GameServerQuery.Games.RV.GameTags.ReadChar C# (CSharp) Method

ReadChar() private static method

private static ReadChar ( string value ) : char?
value string
return char?
        private static char? ReadChar(string value) {
            if (!string.IsNullOrWhiteSpace(value)) {
                return value[0];
            }
            return null;
        }