Вот выдержка из моего кода:
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;
}
Я пытаюсь использовать следующее в коде функции 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;
}
Проблема здесь: я пытаюсь напечатать все элементы в моем Списке, используя цикл 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);
}
Я хочу найти последний элемент, чтобы приравнять cnt3 в цикле for и распечатать все записи в списке. Каждый элемент в списке является объектом класса AllIntegerIDs, как указано выше в примере кода. Как мне найти последнюю действительную запись в списке?
Должен ли я использовать что-то вроде integerList.Find (integerList []. M_MessageText == null;
Если я использую это, ему понадобится индекс, который будет варьироваться от 0 до любого максимального значения. Значит, мне придется использовать другой цикл for, который я не собираюсь использовать. Есть более короткий / лучший способ?
Спасибо вирен
AllIntegerIDs newItem = new AllIntegerID();
, используйте это, чтобы назначить все поля, а затем вызвать integerList.Add(newItem)
. Или используйте свойства, а не поля и используйте синтаксис инициализатора объекта C # 3.0.