Question 111 – What is the Constructor of Hashtable? We have ten overloaded Constructor. we will see some important constructors of Hashtable. Constructor with no parameters – Creates an…
Question 101 – What is a Parameterized constructor? Constructor that accepts arguments is known as parameterized constructor. There may be situations, where it is necessary to initialize various data members…
Question 91 – What is an Interface? An interface looks like a class, but has no implementation. An interface is a named set of method signatures. An Interface is a…
Question 81 – What are the Types of Inheritance? Implementation inheritance refers to the ability to use a base class’s properties and methods with no additional coding. Interface inheritance…
Question 71 – What are the different Access Modifiers available? Public – Access to same assembly or another assembly that references it. Private – Access to same class or…
Question 61 – What is Runtime Host? Ranging from Windows applications, Web applications to Mobile applications, CLR is designed to support various types of applications. .NET Framework provides different…
Introduction: As most of you know that Microsoft released the Visual Studio 11 Developers preview in BUILD Conference. In this article we are going to see the list of…
Question 51 – What is a Resource File? Resource files are the files containing data that is logically deployed with an application. These files can contain data in a…
Question 41 – What is Custom Serialization? In some cases, the default serialization techniques provided by .NET may not be sufficient in real life. This is when we require implementing…
Question 31 – What is an Attribute? Attributes are declarative tags in code that insert additional metadata into an assembly. Attributes are of Two types: Predefined attributes such as Assembly…