Esempio n. 1
0
 public AnySDKParam(Dictionary <string, string> nValue)
 {
     this._intValue    = 0;
     this._floatValue  = 0f;
     this._boolValue   = false;
     this._strValue    = null;
     this._strMapValue = AnySDKUtil.dictionaryToString(nValue);
     this._type        = AnySDKParam.ParamType.kParamTypeStringMap;
 }
Esempio n. 2
0
 public AnySDKParam(bool nValue)
 {
     this._intValue    = 0;
     this._floatValue  = 0f;
     this._boolValue   = nValue;
     this._strValue    = null;
     this._strMapValue = null;
     this._type        = AnySDKParam.ParamType.kParamTypeBool;
 }
Esempio n. 3
0
 public AnySDKParam(string nValue)
 {
     this._intValue    = 0;
     this._floatValue  = 0f;
     this._boolValue   = false;
     this._strValue    = nValue;
     this._strMapValue = null;
     this._type        = AnySDKParam.ParamType.kParamTypeString;
 }
Esempio n. 4
0
 public AnySDKParam(float nValue)
 {
     this._intValue    = 0;
     this._floatValue  = nValue;
     this._boolValue   = false;
     this._strValue    = null;
     this._strMapValue = null;
     this._type        = AnySDKParam.ParamType.kParamTypeFloat;
 }