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

is_identifier_part_character() static private method

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