System.Numerics.Tests.ComplexTests.Cast_Decimal C# (CSharp) 메소드

Cast_Decimal() 개인적인 메소드

private Cast_Decimal ( decimal value ) : void
value decimal
리턴 void
        public static void Cast_Decimal(decimal value)
        {
            Complex complex = (Complex)value;
            VerifyRealImaginaryProperties(complex, (double)value, 0);
        }
        
ComplexTests