| View previous topic :: View next topic |
| Author |
Message |
mouli
Joined: 24 Aug 2007 Posts: 84
|
Posted: Wed Apr 01, 2009 3:51 am Post subject: how to make dll file for a .CS file uisng commands |
|
|
Hi Experts ,
I have created a class library in c#. how can i make it as dll file using visual studio command.
please can any one let me know asap......
thanks & regards
mouli |
|
| Back to top |
|
 |
vamsy
Joined: 21 Aug 2007 Posts: 60
|
Posted: Wed Apr 01, 2009 3:57 am Post subject: |
|
|
Hi,
you can create the library file for a class as follows.
Place your AClass.cs file in the folder where the csc.exe exists. Then by command (DOS) interface go to that particular folder and execute the following command:
csc /t:library AClass.cs
try this command, it will helps you a bit. happy coding,
regards |
|
| Back to top |
|
 |
|