protected void Parse(SNode stream, int limit) { while (!Reader.AtEnd && limit != 0) { SNode thisobj = ParseOne(); if (thisobj != null) { stream.AddMember(thisobj); } limit--; } }
protected void Parse(SNode stream, int limit) { while (!Reader.AtEnd && limit != 0) { SNode thisobj = ParseOne(); if (thisobj != null) stream.AddMember(thisobj); limit--; } }