query.
C#
3
Posts
3
Posters
0
Views
1
Watching
-
sorry no dataset1 it is dataset. which u already declare in your code. like i think. Dataset ds = new Dataset();
-
Strictly speaking, the C# version would be
DataSet ds = null;
because you haven't instantiated it in your VB version, but you may want to consider this version if you want it instantiated
DataSet ds = new DataSet();
Deja View - the feeling that you've seen this post before.