13 lines
318 B
C#
13 lines
318 B
C#
namespace Microsoft.CodeAnalysis.CSharp.Symbols;
|
|||
|
|
|
||
|
|
internal static class GeneratedNameConstants
|
||
|
|
{
|
||
|
|
internal const char DotReplacementInTypeNames = '-';
|
||
|
|
|
||
|
|
internal const string SynthesizedLocalNamePrefix = "CS$";
|
||
|
|
|
||
|
|
internal const string SuffixSeparator = "__";
|
||
|
|
|
||
|
|
internal const char LocalFunctionNameTerminator = '|';
|
||
|
|
}
|