Poniżej znajduje się wyciąg z mojego kodu:
public class AllIntegerIDs
{
public AllIntegerIDs()
{
m_MessageID = 0;
m_MessageType = 0;
m_ClassID = 0;
m_CategoryID = 0;
m_MessageText = null;
}
~AllIntegerIDs()
{
}
public void SetIntegerValues (int messageID, int messagetype,
int classID, int categoryID)
{
this.m_MessageID = messageID;
this.m_MessageType = messagetype;
this.m_ClassID = classID;
this.m_CategoryID = categoryID;
}
public string m_MessageText;
public int m_MessageID;
public int m_MessageType;
public int m_ClassID;
public int m_CategoryID;
}
Próbuję użyć następującego kodu w moim kodzie funkcji main ():
List<AllIntegerIDs> integerList = new List<AllIntegerIDs>();
/* some code here that is ised for following assignments*/
{
integerList.Add(new AllIntegerIDs());
index++;
integerList[index].m_MessageID = (int)IntegerIDsSubstring[IntOffset];
integerList[index].m_MessageType = (int)IntegerIDsSubstring[IntOffset + 1];
integerList[index].m_ClassID = (int)IntegerIDsSubstring[IntOffset + 2];
integerList[index].m_CategoryID = (int)IntegerIDsSubstring[IntOffset + 3];
integerList[index].m_MessageText = MessageTextSubstring;
}
Problem jest tutaj: próbuję wydrukować wszystkie elementy z mojej listy przy użyciu pętli for:
for (int cnt3 = 0 ; cnt3 <= integerList.FindLastIndex ; cnt3++) //<----PROBLEM HERE
{
Console.WriteLine("{0}\t{1}\t{2}\t{3}\t{4}\n", integerList[cnt3].m_MessageID,integerList[cnt3].m_MessageType,integerList[cnt3].m_ClassID,integerList[cnt3].m_CategoryID, integerList[cnt3].m_MessageText);
}
Chcę znaleźć ostatni element, aby zrównać cnt3 w mojej pętli for i wydrukować wszystkie wpisy na liście. Każdy element listy jest obiektem klasy AllIntegerIDs, jak wspomniano powyżej w przykładowym kodzie. Jak znaleźć ostatni ważny wpis na liście?
Czy powinienem użyć czegoś takiego jak integerList.Find (integerList []. M_MessageText == null;
Jeśli go użyję, będzie potrzebny indeks, który będzie w zakresie od 0 do dowolnego maksimum. Znaczy, będę musiał użyć innej pętli for, której nie zamierzam używać. Czy istnieje krótszy / lepszy sposób?
Dzięki, Viren
AllIntegerIDs newItem = new AllIntegerID();
, użyj tego do przypisania wszystkich pól, a następnie zadzwoń integerList.Add(newItem)
. Lub użyj właściwości zamiast pól i użyj składni inicjatora obiektu C # 3.0.