![]() ![]() |
Q1: | Where do I get all the information on the new language features and the compiler and linker directives not required for .NET development? |
A1: | Microsoft provides a complete list of the new compiler directives in its online help that ships with Visual Studio .NET. Search for "What's New" in the online help to bring up a list of topics. |
Q2: | What is an assembly? |
A2: | An assembly is the finished result of a .NET project. It contains what is known as metadata, which describes data types such as structures or classes, version information, and internal resources such as graphics and/or sound files. This information is stored in what is called the assembly manifest. |
Q3: | How do I enter command-line options to my project? |
A3: | If you know what option you need, select Project, Properties from the main menu. Under the Configuration Properties heading, expand the C/C++ heading and select Command Line. You can add extra command-line options in the edit box titled Additional Options, located on the right. To specify additional linker options, follow the same steps but select the Linker heading instead of the C/C++ heading mentioned earlier. |
![]() ![]() |
Top |