The text of this article is not in this database — only its details are. Read it on the old site: Compile DLL using Command Line C# Compiler
4 Comments
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.
The text of this article is not in this database — only its details are. Read it on the old site: Compile DLL using Command Line C# Compiler
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.
Gowtham RajamanickamPosted Apr 26, 2016, 3:12 AM
good article
Mohammad NourPosted Oct 16, 2011, 8:35 PM
Thank you but How can i use this dll (when i make dll with this way) in any C# program?
MonishaPosted May 5, 2010, 10:11 PM
Hi, I have created the dll using commandline and a texteditor. below is the code for my dll using System; using System.Collections; namespace myservice { public class service { public static void Main() { } public ArrayList l_authors() { ArrayList ar = new ArrayList(); ar.Add("xyz"); ar.Add("abc"); return ar; } } } the command used to create the dll is csc /t:library authors.cs. the dll was created successfully, refrence of this dll was added in bin folder of my website. but the problem is when i am trying to use this dll in one of my screens by using statement it is not showing up. Please Help. Thanks, Monisha.