Typed and Untyped Dataset

  • Thread starter Thread starter Reza Alirezaei
  • Start date Start date
Hi Reza,

Typed dataset is just a class derived from DataSet that lets you access data
through methods and properties, i.e.
Instead of typing row["somecolumn"] = ... you just type row.somecolumn = .
Which has two main benefits: vs.net helps you coding and your code is less
error prone.

HTH
 
Back
Top