Interview Questions

How do I create a multilanguage, multifile assembly?

C# Interview Questions and Answers


(Continued from previous question...)

56. How do I create a multilanguage, multifile assembly?

Unfortunately, this is currently not supported in the IDE. To do this from the command line, you must compile your projects into netmodules (/target:module on the C# compiler), and then use the command line tool al.exe (alink) to link these netmodules together.

(Continued on next question...)

Other Interview Questions