Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 6th, 2012  |  syntax: None  |  size: 0.22 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How to find a Row in Datagridview and update it
  2. public class MyData
  3. {  
  4.    public string Name {get;set;}
  5.    public string Address {get;set}
  6. }
  7.        
  8. var foundMyData = from data in myDataList where (. condition..) select data;