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.
 
Back
Top