DLLs

  • Thread starter Thread starter Rookie
  • Start date Start date
R

Rookie

Is it possible to write DLLs in C#? If yes can someone give some links to
articles/tutorials that deal with this subject.

Thanks.
 
Yes.

If you are using Visual Studio:
New project,
Class Library

It is a managed class DLL. The framework is required. Other .NET programs
will need to make a reference to it and refer to it's namespace.

HTH,
--- Nick
 
It's possible to compile for COM compatibility as well (unmanaged.)

Go into the project properties, and go into the configuration "tab" (or
whatever it is). Make sure that "Register for COM interop" is checked.
You will probably have to generate a signature key for it.
 

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

Similar Threads

To utilize old MFC dll in WPF 3
Win32 DLL with C# 1
Command line argument 2
How to share data between C# and C++ Dll 1
Re-writing COM DLLs in C#.net 3
DLLs 10
.Net Code Access 12
Loading Assembly from folder 3

Back
Top