Ejemplo n.º 1
0
 // Copy Constructor
 public Odds(Odds other)
 {
     _oddsToOne = other._oddsToOne;
     _format = other._format;
 }
Ejemplo n.º 2
0
 public Odds(SerializationInfo info, StreamingContext ctxt)
 {
     _oddsToOne = (double)info.GetValue("_oddsToOne", typeof(double));
     _format = (StringFormating)info.GetValue("_format", typeof(StringFormating));
 }
Ejemplo n.º 3
0
 // Copy Constructor
 public SippOdds(SippOdds other)
 {
     _oddsToOne = other._oddsToOne;
     _format = other._format;
 }