Exemple #1
0
 /// <summary>
 /// Determines whether a pin is a member of the list based off of bus size,
 /// pin name and pin polarity
 /// </summary>
 /// <param name="pin">Pin to be added</param>
 /// <returns>Boolean indicating whether add was successful</returns>
 public Boolean Contains(Pin pin)
 {
     return(pin.isMember(pins));
 }