Example #1
0
 public ComProtocol(string n,proprietaType[] propList): base(n,propList) { }
 public PropertyItem(PropertyItem pi)
 {
     name = pi.name;
     value = pi.value;
     pdef = pi.pdef;
 }
 public void setPropertyDef(proprietaType pt)
 {
     pdef = pt;
 }
 public PropertyItem(string name, string value, proprietaType pt)
 {
     this.name = name;
     this.Value = value;
     pdef = pt;
 }