Пример #1
0
    public static System.UInt64 ReadUInt64(Dictionary <string, object> inDict, string inVariableName, System.UInt64 inDefaultValue = DefaultInt)
    {
        System.UInt64 returnVal = inDefaultValue;

        if (inDict.ContainsKey(inVariableName) == true)
        {
            returnVal = JSONTools.ReadUInt64(inDict[inVariableName]);
        }

        return(returnVal);
    }