public void Add(string name, OVType type, string Grp) { this.Name = name; this.Type = type; PinGroups.Add(Grp); }
public void Add(string name, OVType type, string Grp) { this.Name = name; this.OVType = type; // setting the property, not the enum definition PinGroups.Add(Grp); }
public void Add(string name, OVType type, string Grp) { this.Name = name; this.ovType = type; //Why cannot reference a type through ab expression? PinGroups.Add(Grp); }