C# Json object serialization with dynamic custom object
I have a C# class like the following: public class Test { public string x; public int y; public string str1; public string str2; ... ... public string strN; } with N that could be 0 or greater. That means…