示例#1
0
 public EuropeanOption(Share share, double strike, Date exerciseDate)
 {
     this.share        = share;
     this.strike       = strike;
     this.exerciseDate = exerciseDate;
 }
示例#2
0
 public Dividend(Share underlying)
 {
     this.underlying = underlying;
     toString        = "SHARE:DIVI:" + underlying.currency.ToString() + ":" + underlying.shareCode;
 }