Internalizing client API helper classes

Hey

I’ve noticed that in latest version of dev branch some helper classes (e.g. Json) has been made internal. This makes interacting with the API more difficult since methods such as ParseJson or ToJson are no longer available. I miss them :\

Szymon

What was the interface on them?

public static string ToJson(this object source)
public static T ParseJson(this string json)

public static T ParseJson(this byte[] json)

the catch is that they use the NoBom encoding. If somebody blindly tries to use Json.net directly, kaboom!