Logo 
Search:

.Net Framework Interview FAQs

Submit Interview FAQ
Home » Interview FAQs » .Net FrameworkRSS Feeds
.Net Framework
Comments: 0

What is reflection?

All .NET compilers produce metadata about the types defined in the modules they produce. This metadata is packaged along with the module (modules in turn are packaged together in assemblies), and can be accessed by a mechanism called reflection. The ...
Posted By:Faith Hughes      Posted On: Oct 16

.Net Framework
Comments: 0

What are the new features of .NET 2.0?

Generics, anonymous methods, partial classes, iterators, property visibility (separate visibility for get and set) and static classes. See msdn.microsoft.com/.../default.aspx for more information about these features.
Posted By:Dinh Tran      Posted On: Mar 25

.Net Framework
Comments: 0

What are the new 2.0 features useful for?

Generics are useful for writing efficient type-independent code, particularly where the types might include value types. The obvious application is container classes, and the .NET 2.0 class library includes a suite of generic container classes in the...
Posted By:Ann Evans      Posted On: Jan 31

.Net Framework
Comments: 0

What's the problem with .NET generics?

.NET generics work great for container classes. But what about other uses? Well, it turns out that .NET generics have a major limitation - they require the type parameter to be constrained. For example, you cannot do this:

static class Dispose...
Posted By:Dan Romero      Posted On: Dec 22

.Net Framework
Comments: 0

What's new in the .NET 2.0 class library?

Here is a selection of new features in the .NET 2.0 class library:

Generic collections in the System.Collections.Generic namespace.
The System.Nullable type. (Note that C# has special syntax for this type, e.g. int? is equivalent to Nullable)
Th...
Posted By:Clint Garcia      Posted On: Oct 25

  8  9  10  11  12  13