PERWAPI.UIntConst.GetLong C# (CSharp) Method

GetLong() public method

public GetLong ( ) : long
return long
        public long GetLong()
        {
            // KJG addition
            if (val <= (ulong)(System.Int64.MaxValue))
                return (long) val;
            else
                throw new Exception("UInt Constant too large");
        }