Answer: the order of execution of constructor and destructor call in c# inheritance: The constructor call is from top to bottom i.e. from base class
Category: C# Basic Interview Questions
List of C# basic interview questions for freshers with best answers and notes asked in technical job interviews. | Only Real
Answer: In C# programming, Array is homogeneous in nature, So, It cannot hold multiple data types e.g. int, String and bool etc. However, by declaring
Answer of this technical C# interview includes difference between class and structure in c# programming and similarities between them.Answer Similarities between class and structure in
Answer: Use IS Operator in C# to check if two objects are of same type and AS Operator in C# to typecast one type of
Answer includes C# abstract class constructor with real time example program. An interviewer can also ask it as, can abstract class have constructor in C#
Answer: Use and conceptual difference between readonly and const in C# with example. CONST: The constant -const variable cannot be changed once it has been
Answer: To access private method in C# programming of a class, we need to use reflection technique. In brief, reflection objects are used to get
Answer includes definition of Identifiers and keywords in C sharp. We will also be answering the best practice if they have same name. Identifier: Identifier
Answer: A virtual method in C# language is method that have virtual keyword in its declaration. In c# inheritance feature, we may want to allow
If we make the constructor private of a class in C# programming then we cannot create an object of the class out side of it