Beispiel #1
0
 public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) {
     if (value is String) {
         ConConf o = new ConConf();
         o.Setting = "" + value;
         return o;
     }
     if (value is ConConf) return value;
     return null;
 }
Beispiel #2
0
 public ConDyn(ConConf cc) {
     this.cc = cc;
 }