Last updated 3 years ago
namespace:
Extension methods for the IList type.
IList
List<string> ls = new List<string>() {"1", "2", "3"}; print(ls.PrettyPrint())
public static string PrettyPrint(this IList list): creates a pretty tostring of the list. An example may be seen below.
public static string PrettyPrint(this IList list)
01: hello 02: world 03: :)