iControl.Utility.Converter.toUint64 C# (CSharp) 메소드

toUint64() 공개 메소드

public toUint64 ( iControl ul64 ) : System.UInt64
ul64 iControl
리턴 System.UInt64
        public UInt64 toUint64(iControl.CommonULong64 ul64)
        {
            UInt64 ui64 = (Convert.ToUInt64(ul64.high)<<32) | (Convert.ToUInt64(ul64.low));
            return ui64;
        }
Converter