public static bool operator >=(Bid b1, string b2) { if (b1 == null) { throw new ArgumentNullException("b1"); } if (b2 == null) { throw new ArgumentNullException("b2"); } return(b1 >= Bid.C(b2)); }
public static bool operator <=(Bid b1, string b2) { return(b1 <= Bid.C(b2)); }
public int WanneerGeboden(string bidToFind) { return(WanneerGeboden(Bid.C(bidToFind))); }