// 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.ML.CodeGenerator.CSharp
{
internal static class Symbols
{
internal static readonly string Space = " ";
internal static readonly string StringSymbol = "string";
internal static readonly string PublicSymbol = "public";
internal static readonly string FloatSymbol = "float";
internal static readonly string IntSymbol = "int";
internal static readonly string UIntSymbol = "uint";
internal static readonly string LongSymbol = "long";
internal static readonly string UlongSymbol = "ulong";
internal static readonly string BoolSymbol = "bool";
internal static readonly string DoubleSymbol = "double";
}
}
|