Reputation: 25099
I am making a C# windows application where i have to add information in the grid view rows as i get them from network.
Here is Pseudocode about what i am doing.
while(getting info from network until there is no more info)
{
// here i have to add the info in data grid, how i should do that?
}
Upvotes: 0
Views: 3814
Reputation: 166326
Have a look at
Upvotes: 5