R
Robert May
Question,
Say I have the following:
Using(DataSet ds=new DataSet)
{
...
da.fill(ds)
...
return ds;
}
What happens? Does the using dispose the dataset? Return is supposed to
stop execution immediately, correct?
Just wondering.
Robert
Say I have the following:
Using(DataSet ds=new DataSet)
{
...
da.fill(ds)
...
return ds;
}
What happens? Does the using dispose the dataset? Return is supposed to
stop execution immediately, correct?
Just wondering.
Robert