4 references to new
Microsoft.CodeAnalysis.Workspaces (4)
CodeStyle\CodeStyleOption.cs (3)
28
public static CodeStyleOption<T> Default =>
new
(default!, NotificationOption.Silent);
48
ICodeStyleOption ICodeStyleOption.WithValue(object value) => new
CodeStyleOption
<T>((T)value, Notification);
49
ICodeStyleOption ICodeStyleOption.WithNotification(NotificationOption2 notification) => new
CodeStyleOption
<T>(Value, (NotificationOption)notification);
CodeStyle\CodeStyleOption2_operators.cs (1)
21
return new
CodeStyleOption
<T>(option.Value, (NotificationOption)option.Notification);