internal StructComplex Subtraction(StructComplex newValue)
 {
     X -= newValue.X;
     Y -= newValue.Y;
     return(this);
 }
 internal StructComplex Addition(StructComplex newValue)
 {
     X += newValue.X;
     Y += newValue.Y;
     return(this);
 }