8 references to new
Microsoft.CodeAnalysis.Features (8)
EditAndContinue\TraceLog.cs (8)
86
public static implicit operator Arg(string? value) =>
new
(value);
87
public static implicit operator Arg(int value) =>
new
(value);
88
public static implicit operator Arg(bool value) =>
new
(value ? "true" : "false");
89
public static implicit operator Arg(ProjectId value) =>
new
(value.DebugName);
90
public static implicit operator Arg(DocumentId value) =>
new
(value.DebugName);
91
public static implicit operator Arg(Diagnostic value) =>
new
(value);
254
=> AppendInMemory(new Entry("Error writing log file '{0}': {1}", new[] { new
Arg
(path), new
Arg
(e.Message) }));