G
Geoff Jones
Hi
Can anybody tell me the equivalent code in VB for the following?
public static void copyADataRow(DataRow objSrcRow, DataRow objTargetRow)
{
int i=0;
for each(object item in objSrcRow.ItemArray)
{
objTargetRow[i++] = item;
}
return;
}
As a matter of interest, the code above is taken from
http://www.dotnetspider.com/Technology/KBPages/139.aspx
Geoff
Can anybody tell me the equivalent code in VB for the following?
public static void copyADataRow(DataRow objSrcRow, DataRow objTargetRow)
{
int i=0;
for each(object item in objSrcRow.ItemArray)
{
objTargetRow[i++] = item;
}
return;
}
As a matter of interest, the code above is taken from
http://www.dotnetspider.com/Technology/KBPages/139.aspx
Geoff