Microsoft.VisualStudio.R.Package.DataInspect.HeaderTextVisual.HasArrow C# (CSharp) 메소드

HasArrow() 개인적인 정적인 메소드

private static HasArrow ( string text ) : bool
text string
리턴 bool
        private static bool HasArrow(string text) {
            return text.Length > 0 && (text[text.Length - 1] == ArrowUp || text[text.Length - 1] == ArrowDown);
        }