System.Numerics.Tests.ComplexTests.Cast_UInt32 C# (CSharp) Method

Cast_UInt32() private method

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