예제 #1
0
 public bool TryGetVoucher(string Code, out Voucher Voucher)
 {
     if (this._vouchers.TryGetValue(Code, out Voucher))
         return true;
     return false;
 }
예제 #2
0
 public bool TryGetVoucher(string code, out Voucher voucher)
 {
     return(_vouchers.TryGetValue(code, out voucher));
 }