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

Cast_UInt64() private method

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