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