Version 2.0 Framework
I have a Typed dataset which I wish to share across all forms in my windows application. I would like to create a single instance of the dataset using a static class with appropriate static methods.
I have been looking into this and I am finding the syntax a bit confusing. Maybe I am a bit silly but these signleton patterns keep cropping up in my research which is confusing the hell out of me.
All i want to do is :
When my application starts I need to initialize the dataset with something like :
myclass.mydataset.gogetthe data(); without instantiating.
then I want to reference it with :
myclass.mydataset.tables[0] e.tc e.tc
Can someone show me a simple example of the above and maybe clear up my confusion ?
Thanks In Advance Folks :wave:
