// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
namespace Microsoft.CodeAnalysis
{
///
/// A class that provides constants for common language names.
///
#if COMPILERCORE
public
#else
internal
#endif
static class LanguageNames
{
///
/// The common name used for the C# language.
///
public const string CSharp = "C#";
///
/// The common name used for the Visual Basic language.
///
public const string VisualBasic = "Visual Basic";
///
/// The common name used for the F# language.
///
///
/// F# is not a supported compile target for the Roslyn compiler.
///
public const string FSharp = "F#";
}
}