Ejemplo n.º 1
0
 public DataStruct(ArrayList listValue)
 {
     this.Type          = Define.EDataType.List;
     this.mBooleanValue = false;
     this.mNumberValue  = Number.NaN;
     this.mStringValue  = null;
     this.mListValue    = listValue;
 }
Ejemplo n.º 2
0
 public DataStruct(double doubleValue)
 {
     this.Type          = Define.EDataType.Number;
     this.mBooleanValue = false;
     this.mNumberValue  = new Number(doubleValue);
     this.mStringValue  = null;
     this.mListValue    = null;
 }
Ejemplo n.º 3
0
 public DataStruct(string stringValue)
 {
     this.Type          = Define.EDataType.String;
     this.mBooleanValue = false;
     this.mNumberValue  = Number.NaN;
     this.mStringValue  = stringValue;
     this.mListValue    = null;
 }
Ejemplo n.º 4
0
 public DataStruct(bool booleanValue)
 {
     this.Type          = Define.EDataType.Boolean;
     this.mBooleanValue = booleanValue;
     this.mNumberValue  = Number.NaN;
     this.mStringValue  = null;
     this.mListValue    = null;
 }