Exemplo n.º 1
0
 public Diagnostic(EDiagnosticType diagnosticType, ECheckLevel checkLevel, string decription)
 {
     DiagnosticType = diagnosticType;
     CheckLevel = checkLevel;
     Description = decription;
 }
Exemplo n.º 2
0
 public Diagnostic(EDiagnosticType diagnosticType, ECheckLevel checkLevel)
     : this(diagnosticType, checkLevel, String.Empty)
 {
 }