示例#1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="IncorrectWordEventArgs"/> class.
 /// </summary>
 /// <param name="problemEnum">The problem.</param>
 public IncorrectWordEventArgs(IncorrectWordProblemEnum problemEnum)
 {
     this.problem = problemEnum;
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="IncorrectWordEventArgs"/> class.
 /// </summary>
 public IncorrectWordEventArgs()
 {
     this.problem = IncorrectWordProblemEnum.WordIsNotInDict;
 }