public void Add(string name, OVType type, string Grp)
    {
        this.Name = name;
        this.Type = type;

        PinGroups.Add(Grp);
    }
Esempio n. 2
0
    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);
 }