Bunny83 / SimpleJSON

A simple JSON parser in C#
MIT License
735 stars 294 forks source link

added minor customizations #14

Closed arhcy closed 6 years ago

Bunny83 commented 6 years ago

Sorry but i don't accept pull requests on this rep as i don't want any external license dependencies ^^.

Also i don't really see a direct need for those methods. You can simply check if a certain key exists by doing

if (node["key"] != null)

A JSONArray encapsulates the internally used List so it's generally not recommended to return a direct reference to that list.