Click here to Skip to main content
15,912,665 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: (untagged)
Hi can anyone help me with this :

i am having a foreach loop like this

C#
foreach (DataGridViewRow dr in dgvCSPanel.Rows)
           {
}
in this i have to get the values of columns

please help me with this


Thanks in advance...!!!
Posted

1 solution

Try:
C#
Console.WriteLine(dr["myColumnName"]);
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900