tryng writ out a list in a dictionary System.Collections.Generic.List`1 code example
Example: to list c#
var arr = new int[] {1, 2, 3};
List<int> list = arr.ToList();
var arr = new int[] {1, 2, 3};
List<int> list = arr.ToList();