Forked from Ajay Patel's Pen D3 REaltime chart .
A Pen by A Non Ymous on CodePen.
Forked from Ajay Patel's Pen D3 REaltime chart .
A Pen by A Non Ymous on CodePen.
| using System; | |
| using System.Linq; | |
| using System.Reflection; | |
| public static class JSON | |
| { | |
| public static string Stringify (object obj) | |
| { | |
| if (obj == null) return "null"; | |
| if (obj is ValueType) return obj.ToString ().ToLowerInvariant (); |