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