Can typed DataSet implement an interface?

  • Thread starter Thread starter Luther Miller
  • Start date Start date
L

Luther Miller

I have several typed datasets that all have a set of fields in common
with each, and I have some operations I will be performing with each
one. Is there a way to specify an interface that the generated
typed-dataset code will implement, so I can work on these generically?
(I know, I'm dreaming...)
 
Luther Miller said:
I have several typed datasets that all have a set of fields in common
with each, and I have some operations I will be performing with each
one. Is there a way to specify an interface that the generated
typed-dataset code will implement, so I can work on these generically?
(I know, I'm dreaming...)

Why not create classes derived from the typed DataSets and implement your
interface on the derived classes?
 
Back
Top