c#老哥们这个要咋改才能运行呢

public class CustomMath 
{
    public static int multiply( int a, int b) 
    {
        return a b;
    }
}

return a * b;