C# .NET DLL

  • Thread starter Thread starter Jay
  • Start date Start date
J

Jay

How do I create a DLL in C#

OR

Instead of having to copy my class to the new solution, I want to be able to
add a reference to the DLL and use the "using" statement
 
Hi Jay,

Jay said:
How do I create a DLL in C#
Assuming your using MSVS.NET:
File -> New... -> Project -> C# -> Class Library.
Instead of having to copy my class to the new solution, I want to be able
to
add a reference to the DLL and use the "using" statement

In your project (The solution explorer), right click on the References-item,
and select "Add reference..." - if your class library resides in the same
solution,
select the Projects-tab, else use the Browse... button to navigate to the
assembly
you want to reference.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top