Microsoft.AspNet.SignalR.Messaging.Cursor.Int32ToHex C# (CSharp) Method

Int32ToHex() private static method

private static Int32ToHex ( int value ) : char
value int
return char
        private static char Int32ToHex(int value)
        {
            return (value < 10) ? (char)(value + '0') : (char)(value - 10 + 'A');
        }