コード例 #1
0
 /// <summary>
 /// Add problems in list.
 /// </summary>
 /// <param name="problemType">Type of problem.</param>
 /// <param name="description">Description of the problem.</param>
 public void AddProblem(LicenseProblemType problemType, string description)
 {
     _problems.Add(problemType);
     _problems2.Add(new LicenseProblem(problemType, description));
 }
コード例 #2
0
 /// <summary>
 /// Add problems in list.
 /// </summary>
 /// <param name="problemType">Type of problem.</param>
 /// <param name="description">Description of the problem.</param>
 public void AddProblem(LicenseProblemType problemType, string description)
 {
     _problems.Add(problemType);
     _problems2.Add( new LicenseProblem(problemType, description));
 }
コード例 #3
0
 /// <summary>
 /// Initializes the object LicenseProblem.
 /// </summary>
 /// <param name="problemType">Type of problem.</param>
 /// <param name="description">Description of the problem.</param>
 public LicenseProblem(LicenseProblemType problemType, string description)
 {
     ProblemType = problemType;
     Description = description;
 }
コード例 #4
0
 /// <summary>
 /// Initializes the object LicenseProblem.
 /// </summary>
 /// <param name="problemType">Type of problem.</param>
 /// <param name="description">Description of the problem.</param>
 public LicenseProblem(LicenseProblemType problemType, string description)
 {
     ProblemType = problemType;
     Description = description;
 }