例外が発生しています
System.ArgumentOutOfRangeException: 位置 1 に行がありません。RBTree`1.GetNodeByIndex(Int32 userIndex)**
0 または 1 または 2 の位置に行はありません。配列境界の外側にあるいくつかの配列要素を読み書きしようとしていると思います。コード スニペットを以下に示します。
public void ManageAlarm(string textName, int leaveValue)
{
try
{
int indices = team.Find(textName);
if (indices >= 0)
{
DataRow row = teamTable.Rows[indices];
row[m_leaveValues] = leaveValue;
}
}
このアラート トレースを防ぐにはどうすればよいですか