System.Web.Razor.RazorDebugHelpers.GetCharValue C# (CSharp) Method

GetCharValue() private static method

private static GetCharValue ( char ch ) : string
ch char
return string
        private static string GetCharValue(char ch)
        {
            string value;
            if (_printableEscapeChars.TryGetValue(ch, out value))
            {
                return value;
            }
            return ch.ToString();
        }