以下は私のコードからの抜粋です:
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);
}
forループでcnt3と同等にして、リストのすべてのエントリを出力できるように、最後の要素を見つけたいと思います。リストの各要素は、コードサンプルで前述したように、AllIntegerIDsクラスのオブジェクトです。リストの最後の有効なエントリを見つけるにはどうすればよいですか?
integerList.Find(integerList []。m_MessageText == null;
それを使用する場合、0から最大値までの範囲のインデックスが必要になります。使用するつもりのない別のforループを使用する必要があることを意味します。より短い/より良い方法はありますか?
ありがとう、Viren
AllIntegerIDs newItem = new AllIntegerID();
を使用してすべてのフィールドを割り当て、次にを呼び出しますintegerList.Add(newItem)
。または、フィールドではなくプロパティを使用し、C#3.0オブジェクト初期化構文を使用します。