Beispiel #1
0
 public static string PhysicalConnectorToString(tagPhysicalConnectorType pct)
 {
     string ret = pct.ToString();
     return ret.Substring(ret.IndexOf("_") + 1);
 }
Beispiel #2
0
 public PhysicalConnector(IPin pin, tagPhysicalConnectorType pct, int index)
 {
     this.pin = pin;
     this.pct = pct;
     this.index = index;
 }