C# (Sharp) Programming Language Question:

How do I create a multilanguage, multifile assembly?

Tweet Share WhatsApp

Answer:

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.

Download C# (Sharp) Programming Language PDF Read All 163 C# (Sharp) Programming Language Questions
Previous QuestionNext Question
How do I do implement a trace and assert?C# provides a default constructor for me. I write a constructor that takes a string as a parameter ...