how to create automatically a DLL using a Command line

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to encapsulate many files in a DLL.

Is threre a way to create a DLL automaticaly via code not having to create a
project in visual studio dot net?
 
Bruce One said:
I want to encapsulate many files in a DLL.

Is threre a way to create a DLL automaticaly via code not having to create a
project in visual studio dot net?

You normally create a C# DLL using "csc /t:library".

-- Barry
 
Back
Top