N nicol Jun 19, 2011 #2 hello what does DataGridView do? DataGridView dv ; Click to expand... i want to what these two codes exactly do public static DataTable dt; public static DataGridView gv; / dt = new DataTable(); gv = new DataGridView(); thanks
hello what does DataGridView do? DataGridView dv ; Click to expand... i want to what these two codes exactly do public static DataTable dt; public static DataGridView gv; / dt = new DataTable(); gv = new DataGridView(); thanks
A Arne Vajhøj Jun 19, 2011 #3 what does DataGridView do? DataGridView dv ; Click to expand... It is a type. The line declares a variable of that type. It does not "do" anything. Arne
what does DataGridView do? DataGridView dv ; Click to expand... It is a type. The line declares a variable of that type. It does not "do" anything. Arne
N nicol Jun 19, 2011 #4 It is a type. The line declares a variable of that type. It does not "do" anything. Arne Click to expand... and i can't undrestand this code too : List<class_name> a= new List<class_name>();
It is a type. The line declares a variable of that type. It does not "do" anything. Arne Click to expand... and i can't undrestand this code too : List<class_name> a= new List<class_name>();
A Arne Vajhøj Jun 19, 2011 #5 and i can't undrestand this code too : List<class_name> a= new List<class_name>(); Click to expand... It declares a variable of the type List<class_name> (List is a generic type). Arne
and i can't undrestand this code too : List<class_name> a= new List<class_name>(); Click to expand... It declares a variable of the type List<class_name> (List is a generic type). Arne