iControl.Utility.Converter.toUint64 C# (CSharp) Method

toUint64() public method

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