コード例 #1
0
 public void ProblemSolved(ProblemAbstract p)
 {
     Console.WriteLine("ProblemSolved");
 }
コード例 #2
0
 public IAsyncResult BeginErrorInProblem(ProblemAbstract p, string errorMessage, AsyncCallback callback, object asyncState)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
 public void ProblemEvaluated(ProblemAbstract p)
 {
     throw new NotImplementedException();
 }
コード例 #4
0
 public void ProblemCanceled(ProblemAbstract p)
 {
     throw new NotImplementedException();
 }
コード例 #5
0
 public void ErrorInProblem(ProblemAbstract p, string errorMessage)
 {
     Console.WriteLine("ErrorInProblem");
 }
コード例 #6
0
 public IAsyncResult BeginProblemSolved(ProblemAbstract p, AsyncCallback callback, object asyncState)
 {
     throw new NotImplementedException();
 }