Archives
Mircosoft did a create job with the DataGridView in .Net 2.0. It’s so easy to display you own data. All you need is a IList implementation. The List< T > was the first which
I’ve just want to mention how to do a foreach with a .NET 2.0 Hashtable: Dictionary< string, int > dict = new Dictionary< string, int >(); dict["one"] = 1; dict["two"] = 2; dict["thress"] = 3; foreach( KeyValuePair< string, int > data in dict) { Debug.WriteLine( data.Key + " => " + data.Value ); } So [...]