public static Delegate1 operator ++ (Delegate1 x)
        {
            return new Delegate1(x.real++,x.img++);
        }
怎么让编译器知道是前置还是后置啊,我用c++中的加int的方法,编译器要报错。