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

ReadBool() private static method

private static ReadBool ( string value ) : bool?
value string
return bool?
        private static bool? ReadBool(string value) {
            if (value == "t") {
                return true;
            }
            if (value == "f") {
                return false;
            }
            return null;
        }