Exemple #1
0
 public ClassifiedRange(ClassificationKind kind, int start, int length)
 {
     this.Kind   = kind;
     this.Start  = start;
     this.Length = length;
 }
 public BuildResultClassification(ClassificationKind kind, string name, string detailedName)
 {
     Kind = kind;
     Name = name;
     DetailedName = detailedName ?? "";
 }
Exemple #3
0
 public BuildResultClassification(ClassificationKind kind, string name, string detailedName)
 {
     Kind         = kind;
     Name         = name;
     DetailedName = detailedName ?? "";
 }
 public ClassifiedText(ClassificationKind kind, string text)
 {
     this.Kind = kind;
     this.Text = text;
 }