Ejemplo n.º 1
0
 public Answer MakeCopy()
 {
     Answer a = new Answer();
     a.Text = this.Text;
     a.Sym = this.Sym;
     return a;
 }
Ejemplo n.º 2
0
 public static Answer MakeNew(string text, Symbol sym)
 {
     Answer a = new Answer();
     a.Text = text;
     a.Sym = sym;
     return a;
 }