VB.NET INTERVIEW QUESTION & ANSWERS
66. |
What is the difference between the Debug class and Trace class? |
|
Documentation looks the same. Use Debug class for debug builds, use Trace class for both debug and release builds. |
67. |
What is a strong name? |
|
A strong name includes the name of the assembly, version number, culture identity, and a public key token. |
68. |
What do you know about .NET assemblies? |
|
Assemblies are the smallest units of versioning and deployment in the .NET application. Assemblies are also the building blocks for programs such as Web services, Windows services, serviced components, and .NET remoting applications. |
69. |
What is the maximum number of classes that can be contained in one DLL file? |
|
There is no limit to the number of classes that can be contained in a DLL file. |
70. |
What namespaces are necessary to create a localized application? |
|
- System.Globalization
-
System.Resources
|