DLL file
-
can i program an application to generate dll file as an output ,for example: program generate the following code : class cars { private string _Model; Private string _Type; public Cars() { } public string Model { get{return _Model;} set{_Model=Value;} } public string Model { get{return _Model;} set{_Model=Value;} } } I need to convert the above code to a dll(Cars.dll) file that simply can use it: Please help me to do it, Thank you very much,
-
can i program an application to generate dll file as an output ,for example: program generate the following code : class cars { private string _Model; Private string _Type; public Cars() { } public string Model { get{return _Model;} set{_Model=Value;} } public string Model { get{return _Model;} set{_Model=Value;} } } I need to convert the above code to a dll(Cars.dll) file that simply can use it: Please help me to do it, Thank you very much,
Yes you can. When creating a new project choose windows class library.
-
Yes you can. When creating a new project choose windows class library.
-
Perhaps this is a good place to start : http://www.codeproject.com/useritems/Run-Time_Code_Generation1.asp[^]
-
Perhaps this is a good place to start : http://www.codeproject.com/useritems/Run-Time_Code_Generation1.asp[^]
-
can i program an application to generate dll file as an output ,for example: program generate the following code : class cars { private string _Model; Private string _Type; public Cars() { } public string Model { get{return _Model;} set{_Model=Value;} } public string Model { get{return _Model;} set{_Model=Value;} } } I need to convert the above code to a dll(Cars.dll) file that simply can use it: Please help me to do it, Thank you very much,
Have a look at http://www.codeproject.com/csharp/codecompilation.asp Hope this helps...
-
Have a look at http://www.codeproject.com/csharp/codecompilation.asp Hope this helps...
-
thank you so much But I have another problem how can I set the assemply info(Properties Folder) for the Source Code or the Dll output file Best Regards ,