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?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top