I'm creating a Class that performs low level manipulation of an archaic indexed sequential database. The Class is to make it easier for other developers who have to manipulate this database. I have a Class with Properties and Methods (subs and functions). However, how do I create a sub-method (a method under a method). As an example. I want the developer to be able to access a method in my class as follows:
MyClass.Method1
This I can program with no problem.
However, I also want the developer to access a sub-method as follows:
MyClass.Method1.SubMethod1
Any examples of how this can be programmed would be greatly appreciated.
MyClass.Method1
This I can program with no problem.
However, I also want the developer to access a sub-method as follows:
MyClass.Method1.SubMethod1
Any examples of how this can be programmed would be greatly appreciated.