Is there a ToString
C# library for different data structures, and built in classes?
Same as extension methods libraries? I imagine many developers use them for debugging, seeing what the data contains.
For example: Debug.Writeline(dict);
may give me the following:
new Dictionary<string,string>() {{ "abc", "def" } , {"lmn", "opq"}};
or a different style.
Thanks.