System.Numerics.Tests.ComplexTests.Cast_UInt32 C# (CSharp) Méthode

Cast_UInt32() private méthode

private Cast_UInt32 ( uint value ) : void
value uint
Résultat void
        public static void Cast_UInt32(uint value)
        {
            Complex complex = value;
            VerifyRealImaginaryProperties(complex, value, 0);
        }
        
ComplexTests