Inheritance: QLNet.FloatingRateCoupon
示例#1
0
 public override void initialize(FloatingRateCoupon coupon)
 {
     coupon_ = coupon as OvernightIndexedCoupon;
     if (coupon_ == null)
     {
         throw new ApplicationException("wrong coupon type");
     }
 }
示例#2
0
 public override void initialize(FloatingRateCoupon coupon)
 {
    coupon_ = coupon as OvernightIndexedCoupon;
    if (coupon_ == null)
       throw new ApplicationException("wrong coupon type");
 }
示例#3
0
 public override void initialize(FloatingRateCoupon coupon)
 {
     coupon_ = coupon as OvernightIndexedCoupon;
     Utils.QL_REQUIRE(coupon_ != null, () => "wrong coupon type");
 }