Microsoft.VisualStudio.R.Package.DataInspect.HeaderTextVisual.HasArrow C# (CSharp) Method

HasArrow() private static method

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