Logeshkumar S.
Logeshkumar S.
### Type of issue Other (describe below) ### Description From: [Explicit interface member implementations](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/language-specification/interfaces#1862-explicit-interface-member-implementations) ``` C# interface IList { T[] GetElements(); } interface IDictionary { V this[K key] { get;...
### Type of issue Typo ### Description In the production fragment, ``` ANTLR fragment Underscore_Character : '_' // underscore | '\\u005' [fF] // Unicode_Escape_Sequence for underscore ; ``` shouldn't we...
### Type of issue Other (describe below) ### Description In the [Grammar ambiguities](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/language-specification/lexical-structure#625-grammar-ambiguities) section mentioned below, > If a sequence of tokens can be parsed (in context) as a _simple_name_,...
### Type of issue Spec incorrect ### Description Reference: [Pre-processing line directive](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/language-specification/lexical-structure#658-line-directives) Production fragment: ``` ANTLR fragment PP_Compilation_Unit_Name_Character // Any Input_Character except " : ~('\u000D' | '\u000A' | '\u0085' |...