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

Cast_UInt16() private method

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