have some method in a exe file.but I want to use them in another project
-
How to do it that include a exe file In a project? I have some method in a exe file.but I want to use them in another project.Can do ti? How to do it?
hi there, u cannot include an exe file as reference an dll. But u can reuse methods in exe file by executing it from ur application << >>
-
How to do it that include a exe file In a project? I have some method in a exe file.but I want to use them in another project.Can do ti? How to do it?
In .NET, you can reference .exe files just like you do with .dll files.
-
In .NET, you can reference .exe files just like you do with .dll files.
But you have to note that you can't add the reference with VS.NET, as only DLLs are selectable as assembly references. But if you simply rename the EXE to DLL, it can be referenced without problems. Regards, mav