After someone creates a DLL in C # using the Microsoft Visual development environment, how does another programmer take this code, create a new project that includes the source of the DLL, and create a GUI that uses the DLL API?
I have already completed the following four steps:
1) In Solution Explorer, right-click "Links" and select "Add Link ...".
2) Select the "Overview" tab.
3) Go to the DLL and select it.
4) Add the appropriate "using" directive to the beginning of the code.
What's next? After I declare a new object, how do I know which methods to use?
xarzu source share