I am looking at System.Json, but can't seem to find methods in here that will allow me to convert a C# array or class instance into a JSON string. I am looking for functionality similar to SBJSON in objective-c where, for example, an NSArray can be converted to a JSON string as follows:
NSString *resultArrayString = [json stringWithObject:resultArray allowScalar:YES error:nil];
Staying with this same example, is there an equivalent method in System.Json namespace somewhere that would allow convert a C# string array to a JSON string?