コード例 #1
0
ファイル: Complex_auto.cs プロジェクト: forki/aardvark.base
        public static ComplexF operator -(ComplexF a, float b)
        {
            ComplexF c = a;
            c.Subtract(b);

            return c;
        }
コード例 #2
0
        public static ComplexF operator -(ComplexF a, ComplexF b)
        {
            ComplexF c = a;

            c.Subtract(b);

            return(c);
        }