我試圖在for循環中添加一個列表。指數超出範圍。必須是非負數,並且小於集合的大小
這裏是我的代碼 我創建了一個屬性在這裏
public class SampleItem
{
public int Id { get; set; }
public string StringValue { get; set; }
}
我想從另一個列表中
List<SampleItem> sampleItem = new List<SampleItem>(); // Error: Index out of range
for (int i = 0; i < otherListItem.Count; i++)
{
sampleItem[i].Id = otherListItem[i].Id;
sampleItem[i].StringValue = otherListItem[i].Name;
}
增值有人可以糾正我的代碼,請。
哇!多謝你們。只有一分鐘,我得到了8個迴應!這就是我喜歡這個地方的原因!我試過了,它的作用就像魅力:) – HardCode