AvalonStudio.TextEditor.Document.TextUtilities.IsSymbol C# (CSharp) 메소드

IsSymbol() 공개 정적인 메소드

public static IsSymbol ( string text ) : bool
text string
리턴 bool
		public static bool IsSymbol(string text)
		{
			var result = false;

			if (!string.IsNullOrEmpty(text) && (char.IsLetter(text[0]) || text[0] == '_'))
			{
				result = true;
			}

			return result;
		}