T
tony
Hello!!
If I have this for loop construction can this be rerwritten to use foreach
instead.
How is that written?
for ( int i = 0; i < dsMspElYield.Tables[0].Rows.Count; i++ )
arrayList.Add( dsMspElYield.Tables[0].Rows["ELYIELD_NAME"] );
//Tony
If I have this for loop construction can this be rerwritten to use foreach
instead.
How is that written?
for ( int i = 0; i < dsMspElYield.Tables[0].Rows.Count; i++ )
arrayList.Add( dsMspElYield.Tables[0].Rows["ELYIELD_NAME"] );
//Tony