예제 #1
0
파일: Answer.cs 프로젝트: jocundmo/SRCBQS
 public Answer MakeCopy()
 {
     Answer a = new Answer();
     a.Text = this.Text;
     a.Sym = this.Sym;
     return a;
 }
예제 #2
0
파일: Answer.cs 프로젝트: jocundmo/SRCBQS
 public static Answer MakeNew(string text, Symbol sym)
 {
     Answer a = new Answer();
     a.Text = text;
     a.Sym = sym;
     return a;
 }