Example #1
0
 public CCBValue(object pArr)
 {
     _arrValue = pArr;
     _type     = CCBValueType.Array;
 }
Example #2
0
 public CCBValue(byte bValue)
 {
     intValue = bValue;
     _type    = CCBValueType.UnsignedChar;
 }
Example #3
0
 public CCBValue(string pStr)
 {
     _strValue = pStr;
     _type     = CCBValueType.String;
 }
Example #4
0
 public CCBValue(bool bValue)
 {
     intValue = bValue ? 1 : 0;
     _type    = CCBValueType.Bool;
 }
Example #5
0
 public CCBValue(float fValue)
 {
     floatValue = fValue;
     _type      = CCBValueType.Float;
 }
Example #6
0
 public CCBValue(object value)
 {
     _arrValue = value;
     _type = CCBValueType.Array;
 }
Example #7
0
 public CCBValue(int nValue)
 {
     intValue = nValue;
     _type    = CCBValueType.Int;
 }
Example #8
0
 public CCBValue(byte value)
 {
     intValue = value;
     _type = CCBValueType.UnsignedChar;
 }
Example #9
0
 public CCBValue(string value)
 {
     _strValue = value;
     _type = CCBValueType.String;
 }
Example #10
0
 public CCBValue(bool value)
 {
     intValue = value ? 1 : 0;
     _type = CCBValueType.Bool;
 }
Example #11
0
 public CCBValue(float value)
 {
     floatValue = value;
     _type = CCBValueType.Float;
 }
Example #12
0
 public CCBValue (int value)
 {
     intValue = value;
     _type = CCBValueType.Int;
 }
Example #13
0
 public CCBValue(object pArr)
 {
     _arrValue = pArr;
     _type = CCBValueType.Array;
 }
Example #14
0
 public CCBValue(string pStr)
 {
     _strValue = pStr;
     _type = CCBValueType.String;
 }
Example #15
0
 public CCBValue(object value)
 {
     _arrValue = value;
     _type     = CCBValueType.Array;
 }
Example #16
0
 public CCBValue(string value)
 {
     _strValue = value;
     _type     = CCBValueType.String;
 }