Exemple #1
0
 /** constructor
  */
 public JsonItem(Value_Number <System.Decimal> a_value)
 {
     this.SetDecimal(a_value.value);
 }
Exemple #2
0
 /** constructor
  */
 public JsonItem(Value_Number <System.Double> a_value)
 {
     this.SetDouble(a_value.value);
 }
Exemple #3
0
 /** constructor
  */
 public JsonItem(Value_Number <System.Boolean> a_value)
 {
     this.SetBoolData(a_value.value);
 }
Exemple #4
0
 /** constructor
  */
 public JsonItem(Value_Number <System.Single> a_value)
 {
     this.SetSingle(a_value.value);
 }
Exemple #5
0
 /** constructor
  */
 public JsonItem(Value_Number <System.UInt64> a_value)
 {
     this.SetUint64(a_value.value);
 }
Exemple #6
0
 /** constructor
  */
 public JsonItem(Value_Number <System.Int32> a_value)
 {
     this.SetInt32(a_value.value);
 }
Exemple #7
0
 /** constructor
  */
 public JsonItem(Value_Number <System.Byte> a_value)
 {
     this.SetByte(a_value.value);
 }
Exemple #8
0
 /** constructor
  */
 public JsonItem(Value_Number <System.Char> a_value)
 {
     this.SetChar(a_value.value);
 }