2020年12月17日 星期四

[ASP.NET] array 轉 list

array 轉 list
    
    array = list.toArray();

list 轉 array
    list = Arrays.asList(array);