iControl.Utility.Converter.toUint64 C# (CSharp) Méthode

toUint64() public méthode

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