Beispiel #1
0
 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));
 }
Beispiel #2
0
 public static bool operator <=(Bid b1, string b2)
 {
     return(b1 <= Bid.C(b2));
 }
Beispiel #3
0
 public int WanneerGeboden(string bidToFind)
 {
     return(WanneerGeboden(Bid.C(bidToFind)));
 }