-
-
-
What are the Types of Assemblies?
Assemblies are of two types 1. Private Assemblies 2. Shared AssembliesPrivate Assemblies: The assembly is intended only for one application. The files of that assembly must be placed in the same folder as the application or in a sub folder. No other application will be able to make a call to this assembly. The advantage of having a private assembly is that, it makes naming the assembly very...
-
What is the difference between a namespace and assembly name?
A namespace is a logical naming scheme for types in which a simple type name, such as MyType, is preceded with a dot-separated hierarchical name. Such a naming scheme is completely under control of the developer. For example, types MyCompany.FileAccess.A and MyCompany.FileAccess.B might be logically expected to have functionally related to file access. The .NET Framework uses a hierarchical...
-
What is a Metadata?
Metadata is information about a PE. In COM, metadata is communicated through non-standardized type libraries. In .NET, this data is contained in the header portion of a COFF-compliant PE and follows certain guidelines; it contains information such as the assembly’s name, version, language (spoken, not computer—a.k.a., “culture”), what external types are referenced,...
-
What is the difference between VB and VB.NET?
Now VB.NET is object-oriented language. The following are some of the differences:Data Type Changes The .NET platform provides Common Type System to all the supported languages. This means that all the languages must support the same data types as enforced by common language runtime. This eliminates data type incompatibilities between various languages. For example on the 32-bit Windows platform,...
-
-
-
-
-
-
-
-
What is managed code and managed data?
Managed code is code that is written to target the services of the Common Language Runtime. In order to target these services, the code must provide a minimum level of information (metadata) to the runtime. All C#, Visual Basic .NET, and JScript .NET code is managed by default. Visual Studio .NET C++ code is not managed by default, but the compiler can produce managed code by specifying ...
-
-
-
2).please write an example of convertinfg string value "31/12/2000" to date time and at the same time change its format "mm/dd/yy"
3). please write an example of reurnning a date that is the last day of the month.8 months from todays date
4).please write an example of formatting a variable of fromatting a variable in doubble data type with value "1800000.7" to "$1,8000.000.70"
">1).please write an example of getting the smallest value than can sub divde"128"2).please write an example of convertinfg string value "31/12/2000" to date time and at the same time change its format "mm/dd/yy"3). please write an example of reurnning a date that is the last day of the month.8 months from todays date4).please write an example of formatting a variable of fromatting a variable in doubble data type with value "1800000.7" to "$1,8000.000.70"
-
-
-
DotNet Interview Questions
Ans