0

在以下代码中识别第一行的最佳方法是什么?

foreach(DataRow row in myrows)
{

if (first row )
{
...do this...
}
else
{
....process other than first rows..
}
}
4

5 回答 5

5

您可以为此使用布尔标志:

bool isFirst = true;

foreach(DataRow row in myrows)
{
    if (isFirst)
    {
        isFirst = false;
        ...do this...
    }
    else
    {
        ....process other than first rows..
    }
}
于 2010-03-16T17:21:18.797 回答
3

您可以只使用 for 循环

for(int i = 0; i < myrows.Count; i++) 
{
    DataRow row = myrows[i];
    if (i == 0) { }
    else { }
{
于 2010-03-16T17:21:14.710 回答
2

也许是这样的?

    foreach (DataGridViewRow row in dataGridView1.Rows)
    {
        if (row.Index == 0)
        {
            //...
        }
        else
        {
            //...
        }
    }
于 2010-03-16T17:23:43.893 回答
0

使用 int 循环遍历集合。

for (int i =0; i < myDataTable.Rows.Count;i++)
{
    if (i ==0)
    {
       //first row code here
    }
    else
    {
       //other rows here
    }
}
于 2010-03-16T17:25:14.547 回答
0

首先将 DataRow 转换为 DataRowView:

如何在 c# 中将 DataRow 转换为 DataRowView

在那之后:

    foreach (DataRowView rowview in DataView)
{
    if (DataRowView.Table.Rows.IndexOf(rowview.Row) == 0)
    {
        // bla, bla, bla... 
    }
}
于 2015-02-22T15:41:03.310 回答