4 implementations of Type
Microsoft.CodeAnalysis.Workspaces (4)
Options\Option.cs (1)
27
public Type
Type
=> OptionDefinition.Type;
Options\PerLanguageOption.cs (1)
23
public Type
Type
=> _optionDefinition.Type;
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Options\Option2.cs (1)
85
Type IOption.
Type
=> Definition.Type;
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Options\PerLanguageOption2.cs (1)
74
Type IOption.
Type
=> Definition.Type;
3 references to Type
Microsoft.CodeAnalysis.Workspaces (3)
Options\DocumentOptionSet.cs (1)
78
Contract.ThrowIfTrue(internallyDefinedOption.
Type
== typeof(NamingStylePreferences));
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Options\PublicOptionFactory.cs (2)
126
equals = Equals(x.DefaultValue, y.DefaultValue) && x.
Type
== y.
Type
;