コード例 #1
0
ファイル: BondFunctions.cs プロジェクト: igitur/qlnet
        public static double?nextCashFlowAmount(Bond bond, Date refDate = null)
        {
            if (refDate == null)
            {
                refDate = bond.settlementDate();
            }

            return(CashFlows.nextCashFlowAmount(bond.cashflows(), false, refDate));
        }