QLNet.CashOrNothingPayoff.CashOrNothingPayoff C# (CSharp) Метод

CashOrNothingPayoff() публичный Метод

public CashOrNothingPayoff ( Option type, double strike, double cashPayoff ) : System
type Option
strike double
cashPayoff double
Результат System
        public CashOrNothingPayoff(Option.Type type, double strike, double cashPayoff)
            : base(type, strike)
        {
            _cashPayoff = cashPayoff;
        }