c#visualstudio
我想将imagelist1的index [0]复制到imagelist2的index [0]作为备份。 我该怎么办?
答案 0 :(得分:0)
我认为你是这个意思。确保使用System.Collection.Generics。
// Declaring your lists
List<Image> imagelist1 = new List<Image>();
List<Image> imagelist2 = new List<Image>();
// Let's say you filled these list here.
// Copy image with index 0 to the second imagelist.
imagelist2.Add(imagelist1[0]);