我在C#中有一個結構,並根據我在此處表示的代碼定義和數組列表。我在我的數組列表中添加項目,但我需要從列表中刪除幾行。你能幫助我,我如何從我的結構數組列表中刪除一個或多個項目:如何從C#中的結構數組中刪除一個項目#
public struct SwitchList
{
public int m_Value1, m_Value2;
public int mValue1
{
get { return m_Value1; }
set {m_Value1 = value; }
}
public int mValue2
{
get { return m_Value2; }
set {m_Value2 = value; }
}
}
//Define an array list of struct
SwitchList[] mSwitch = new SwitchList[10];
mSwitch[0].mValue1=1;
mSwitch[0].mValue2=2;
mSwitch[1].mValue1=3;
mSwitch[1].mValue2=4;
mSwitch[2].mValue1=5;
mSwitch[2].mValue2=6;
現在我該怎麼刪除我的項目之一,例如第1項 謝謝。
你應該給仿製藥一出手 – Brad 2011-05-22 06:04:44