Sams Teach Yourself Visual C++.NET in 24 Hours
1: | How is code packaged from other languages when used within a .NET application? |
A1: | They are packaged within assemblies. The assembly contains a manifest that details the contents of that package, such as classes, resources, and so on. |
2: | Does it matter which language is used as the main application language? |
A2: | No, it is a matter of preference. Any user interface work will likely be more difficult using C++ due to the lack of a forms designer. For this reason, using VB .NET or C# .NET for the interface and C++ for the underlying logic is a good choice. |
3: | When are the DLLs loaded when used by an application? |
A3: | They are loaded when they are first used. |
Top |