How to write classes

timtom1

Member
Joined
Jun 12, 2006
Messages
24
Programming Experience
Beginner
I have a functioning program but want to turn it into a class, so it can be easily dropped into other programs how do I do that?
 
Create a Class Library project and add the classes/methods/controls into this. When you build it creates a DLL library file that can be referenced from other assemblies.
 
Back
Top