7 references to _items
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (7)
MSBuild\Logging\DiagnosticLog.cs (7)
15
public int Count =>
_items
.Count;
16
public DiagnosticLogItem this[int index] =>
_items
[index];
17
public bool IsEmpty =>
_items
.Count == 0;
20
=>
_items
.GetEnumerator();
26
=>
_items
.Add(item);
29
=>
_items
.Add(new DiagnosticLogItem(kind, message, projectFilePath));
32
=>
_items
.Add(new DiagnosticLogItem(kind, exception.Message, projectFilePath));