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");
 }