Exemplo n.º 1
0
 public static void SetValue(this SmartObject smartObject, string name, string format, params object[] args)
 {
     smartObject.SetStringValue(name, format, args);
 }
Exemplo n.º 2
0
 public static void SetValue(this SmartObject smartObject, string name, string value)
 {
     smartObject.SetStringValue(name, value);
 }
Exemplo n.º 3
0
 public static void SetValue(this SmartObject smartObject, uint index, string format, params object[] args)
 {
     smartObject.SetStringValue(index, format, args);
 }
Exemplo n.º 4
0
 public static void SetValue(this SmartObject smartObject, uint index, string value)
 {
     smartObject.SetStringValue(index, value);
 }