File: System\CodeDom\Compiler\LanguageOptions.cs
Web Access
Project: src\src\libraries\System.CodeDom\src\System.CodeDom.csproj (System.CodeDom)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System.CodeDom.Compiler
{
    [Flags]
    public enum LanguageOptions
    {
        None = 0x0,
        CaseInsensitive = 0x1,
    }
}