8 references to new
Microsoft.CodeAnalysis.Features (8)
EditAndContinue\TraceLog.cs (8)
86public static implicit operator Arg(string? value) => new(value); 87public static implicit operator Arg(int value) => new(value); 88public static implicit operator Arg(bool value) => new(value ? "true" : "false"); 89public static implicit operator Arg(ProjectId value) => new(value.DebugName); 90public static implicit operator Arg(DocumentId value) => new(value.DebugName); 91public 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) }));