beginners guide to creating components

bfsog

Well-known member
Joined
Apr 21, 2005
Messages
50
Location
UK
Programming Experience
5-10
Hi.

Am I right in assuming that if I developed a component, other developers could use it?

And how do I go about creating a component?

And how do I link/call this component from a project?

Thanks in advance for any info on these subjects.
 
You need to compile your project as a DLL. Then you can add a reference to that DLL in the Solution Explorer for any other project. The classes you have created within that DLL can then be accessed like any other.

Edit:
You can also Import the namespaces within that DLL like any other.
 
Back
Top