AcTools.Utils.Helpers.JsonDeserializationExtension.Until C# (CSharp) Method

Until() public static method

public static Until ( this reader, JsonToken token ) : bool
reader this
token JsonToken
return bool
        public static bool Until(this JsonTextReader reader, JsonToken token) {
            return reader.Read() && reader.TokenType != token;
        }