Mono.CSharp.CSharpCodeGenerator.is_identifier_start_character C# (CSharp) Method

is_identifier_start_character() static private method

static private is_identifier_start_character ( char c ) : bool
c char
return bool
		static bool is_identifier_start_character (char c)
                {
                        return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '_' || c == '@' || Char.IsLetter (c);
                }
CSharpCodeGenerator