示例#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;
 }