Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to populate a .net DataGridView from a collection physically (without data binding) in C#. That is, I should use foreach loops and iterate through the collection while creating a row for each object and a cell for each property.

I have created the columns in design mode. Now I need to create rows dynamically.

How to do that?

share|improve this question

1 Answer

up vote 0 down vote accepted

Add an array of objects, the number of which should correspond to the number of columns.

e.g.

this.datagridview1.Rows.Add(new object[] { "col1", "col2", "col3", 4.5, true});

share|improve this answer
Thanks @Lan! – JMSA Jul 3 '09 at 8:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.