PLEASE HELP: exe ==> DLL
Hello! I'm really new to C#.
I have this really basic cs exe and I want to make it a DLL so I can call it as an ActiveX Object thru a webpage (HTA).
I know i need to get it some parametere(s) like a unique GUID and PROGID:
[ComVisible(true), GuidAttribute(" get a unique guid here")]
[ProgId("Your.progid")]
I just don't know how! can you please help me? hhow do I make my exe into a DLL (I knwo the compiler sintax, just need the diffeences between DLL and EXE code)
|