示例#1
0
        public static TJSONValue IntToValue(int Value)
        {
            TJSONValue result;

            result = new TJSONNumber(Value);
            return(result);
        }
示例#2
0
        public static TJSONValue DoubleToValue(double Value)
        {
            TJSONValue result;

            result = new TJSONNumber(Value);
            return(result);
        }