C# Interview Questions (2023)

C# is among the most popular programming languages and the goto language for .NET development. So, if you are a .NET developer going for a .NET interview, you will be asked questions on C# programming. Here are the top 50 C# interview questions and answers for beginners and professional C# developers.

1. What is C#? And What is the latest version of C#?

C# is a computer programming language. Microsoft developed C# in 2000 to provide a modern general-purpose programming language that can be used to develop all kinds of software targeting various platforms, including Windows, Web, and Mobile, using just one programming language. Today, C# is one of the most popular programming languages in the world. Millions of software developers use C# to build all kinds of software. 

C# is the primary language for building Microsoft .NET software applications. Developers can build almost every kind of software using C#, including Windows UI apps, console apps, backend services, cloud APIs, Web services, controls and libraries, serverless applications, Web applications, native iOS and Android apps, AI and machine learning software, and blockchain applications.

C# provides rapid application development with the help of Visual Studio IDE. C# is a modern, object-oriented, simple, versatile, and performance-oriented programming language. C# is developed based on the best features and use cases of several programming languages, including C++, Java, Pascal, and SmallTalk. 

C# syntaxes are like C++. .NET, and the C# library is similar to Java. C# supports modern object-oriented programming language features, including Abstraction, Encapsulation, Polymorphism, and Inheritance. C# is a strongly typed language. Most of the types in .NET are inherited from the Object class.

C# supports concepts of classes and objects. Classes have members such as fields, properties, events, and methods. Here is a detailed article on C# and OOP. 

C# is versatile and modern and supports modern programming needs. Since its inception, C# language has gone through various upgrades. The latest version of C# is C# 11.

2. What is an object in C#? 

C# language is an object-oriented programming language. Classes are the foundation of C#. A class is a template that defines a data structure and how data will be stored, managed, and transferred. A class has fields, properties, methods, and other members.

While classes are concepts, objects are real. Objects are created using class instances. A class defines the type of an object. Objects store real values in computer memory.

Any real-world entity with certain characteristics or that can perform some work is called an Object. This object is also called an instance, i.e., a copy of an entity in a programming language. Objects are instances of classes.

For example, we need to create a program that deals with cars. We need to create entities for cars. Let’s call it a class, Car. A car has four properties, i.e., model, type, color, and size.

To represent a car in programming, we can create a class Car with four properties, Model, Type, Color, and Size. These are called members of a class. A class has several types of members, constructors, fields, properties, methods, delegates, and events. A class member can be private, protected, or public. In addition, since these properties may be accessed outside the class, these can be public.

An object is an instance of a class. A class can have as many instances as needed. For example, Honda Civic is an instance of a Car. In real programming, Honda Civic is an object. Therefore, Honda Civic is an instance of the class Car. The Model, Type, Color, and Size properties of the Honda Civic are Civic, Honda, Red, and 4, respectively. BMW 330, Toyota Carolla, Ford 350, Honda CR4, Honda Accord, and Honda Pilot are some more examples of objects of Car.

To learn more about real-world examples of objects and instances, please read Object Oriented Programming with Real World Scenario

3. What is Managed or Unmanaged Code? 

Managed Code

“Managed code is the code that is developed using the .NET framework and its supported programming languages such as C# or VB.NET. Managed code is directly executed by the Common Language Runtime (CLR or Runtime), and the Runtime manages its lifecycle, including object creation, memory allocation, and object disposal. Any language that is written in .NET Framework is managed code".

Unmanaged Code

The code that is developed outside of the .NET framework is known as unmanaged code. 

“Applications that do not run under the control of the CLR are said to be unmanaged. For example, languages such as C or C++, or Visual Basic are unmanaged.

The programmers directly manage the object creation, execution, and disposal of unmanaged code. Therefore, if programmers write bad code, it may lead to memory leaks and unwanted resource allocations.”

The .NET Framework provides a mechanism for unmanaged code to be used in managed code and vice versa. The process is done with the help of wrapper classes. 

4. What is Boxing and Unboxing in C#? 

Boxing and Unboxing are both used for type conversions.

Converting from a value type to a reference type is called boxing. Boxing is an implicit conversion. Here is an example of boxing in C#.

// Boxing  
int anum = 123;  
Object obj = anum;  
Console.WriteLine(anum);  
Console.WriteLine(obj);

Converting from a reference type to a value type is called unboxing. Here is an example of unboxing in C#.

// Unboxing  
Object obj2 = 123;  
int anum2 = (int)obj;  
Console.WriteLine(anum2);  
Console.WriteLine(obj);

5. What is the difference between a struct and a class in C#? 

Class and struct are both user-defined data types but have some major differences:

Struct

  • The struct is a value type in C# and inherits from System.Value Type.
  • Struct is usually used for smaller amounts of data.
  • Struct can’t be inherited from other types.
  • A structure can't be abstract.
  • No need to create an object with a new keyword.
  • Do not have permission to create any default constructor.

Class

  • The class is a reference type in C#, and it inherits from the System.Object Type.
  • Classes are usually used for large amounts of data.
  • Classes can be inherited from other classes.
  • A class can be an abstract type.
  • We can create a default constructor.

Read the following articles to learn more about structs vs. classes, Struct, and Class Differences in C#

6. What is the difference between Interface and Abstract Class in C#? 

Here are some common differences between an interface and an abstract class in C#.

  • A class can implement any number of interfaces, but a subclass can, at most, use only one abstract class.
  • An abstract class can have non-abstract methods (concrete methods), while in the case of interface, all the methods have to be abstract.
  • An abstract class can declare or use any variables, while an interface cannot do so.
  • In an abstract class, all data members or functions are private by default, while in an interface, all are public; we can’t change them manually.
  • In an abstract class, we need to use abstract keywords to declare abstract methods; in an interface, we don’t need that.
  • An abstract class can’t be used for multiple inheritance, while the interface can be used for multiple inheritance.
  • An abstract class uses a constructor, while we don’t have any constructor in an interface.

To learn more about the difference between an abstract class and an interface, visit Abstract Class vs. Interface.  

7. What is an enum in C#? 

An enum is a value type with a set of related named constants, often called an enumerator list. The enum keyword is used to declare an enumeration. It is a primitive data type that is user-defined.

An enum type can be an integer (float, int, byte, double, etc.). But if you use it beside int, it has to be cast.

An enum is used to create numeric constants in the .NET framework. All the members of the enum are enum type. Therefore, there must be a numeric value for each enum type.

The underlying default type of the enumeration element is int. By default, the first enumerator has the value 0, and the value of each successive enumerator is increased by 1. 

enum Dow {Sat, Sun, Mon, Tue, Wed, Thu, Fri};

Some points about enum,

  • Enums are enumerated data types in c#.
  • Enums are not for the end-user. They are meant for developers.
  • Enums are strongly typed constant. They are strongly typed, i.e., an enum of one type may not be implicitly assigned to an enum of another type even though the underlying value of their members is the same.
  • Enumerations (enums) make your code much more readable and understandable.
  • Enum values are fixed. Enum can be displayed as a string and processed as an integer.
  • The default type is int, and the approved types are byte, sbyte, short, ushort, uint, long, and ulong.
  • Every enum type automatically derives from System.Enum, and thus, we can use System.Enum methods on enums.
  • Enums are value types created on the stack, not the heap.

For more details, follow the link, Enums in C#.  

8. What is the difference between “continue” and “break” statements in C#? 

Using a break statement, you can 'jump out of a loop,' whereas using a continue statement, you can 'jump over one iteration' and resume your loop execution.

E.g., Break Statement

using System;  
using System.Collections;  
using System.Linq;  
using System.Text;  
namespace break_example {  
    Class brk_stmt {  
        public static void main(String[] args) {  
            for (int i = 0; i <= 5; i++) {  
                if (i == 4) {  
                    break;  
                }  
                Console.WriteLine("The number is " + i);  
                Console.ReadLine();  
            }  
        }  
    }  
}

Output 

The number is 0; 

The number is 1; 

The number is 2; 

The number is 3;

E.g., Continue Statement

using System;  
using System.Collections;  
using System.Linq;  
using System.Text;  
namespace continue_example {  
Class cntnu_stmt {  
public static void main(String[] {  
        for (int i = 0; i <= 5; i++) {  
            if (i == 4) {  
                continue;  
            }  
            Console.WriteLine("The number is "+ i);   
                Console.ReadLine();  
            }  
        }  
    }  
}

Output

The number is 1;

The number is 2;

The number is 3;

The number is 5;

For more details, check out the following link: Break and Continue Statements in C# 

9. What is the difference between constant and readonly in C#?

Const is nothing but "constant," a variable whose value is constant but at compile time. Therefore, it's mandatory to assign a value to it. By default, a const is static, and we cannot change the value of a const variable throughout the entire program.

Readonly is the keyword whose value we can change during runtime or assign it at run time but only through the non-static constructor.

Example

We have a Test Class in which we have two variables, one is readonly, and the other is a constant.

class Test {    
    readonly int read = 10;    
    const int cons = 10;    
    public Test() {    
        read = 100;    
        cons = 100;    
    }    
    public void Check() {    
        Console.WriteLine("Read only : {0}", read);    
        Console.WriteLine("const : {0}", cons);    
    }    
}

Here, I was trying to change the value of both the variables in the constructor, but when I try to change the constant, it gives an error to change their value in the block that I have to call at run time.

ASP.NET

Finally, remove that line of code from the class and call this Check() function like in the following code snippet:

class Program {    
    static void Main(string[] args) {    
        Test obj = new Test();    
        obj.Check();    
        Console.ReadLine();    
    }    
}    
class Test {    
    readonly int read = 10;    
    const int cons = 10;    
    public Test() {    
        read = 100;    
    }    
    public void Check() {    
        Console.WriteLine("Read only : {0}", read);    
        Console.WriteLine("const : {0}", cons);    
    }    
}

Output

ASP.NET 

Learn more about const and readonly here: Difference Between Const, ReadOnly, and Static ReadOnly in C#.

10. What is the difference between ref and out keywords?

The ref keyword passes arguments by reference. Therefore, any changes made to this argument in the method will be reflected in that variable when the control returns to the calling method.

The out keyword passes arguments by reference. This is very similar to the ref keyword.

ASP.NET

To learn more about the ref and out keywords, read the following article: Ref Vs. Out Keywords in C#

11. Can “this” be used within a static method?

We can't use 'this' in a static method because the keyword 'this' returns a reference to the current instance of the class containing it. Static methods (or any static member) do not belong to a particular instance. They exist without creating an instance of the class and are called with the name of a class, not by instance, so we can’t use this keyword in the body of static Methods. However, in the case of Extension Methods, we can use the parameters of the method.

Let’s have a look at the “this” keyword.

The "this" keyword in C# is a special type of reference variable implicitly defined within each constructor and non-static method as the first parameter of the type class in which it is defined.

Learn more here: The this Keyword In C#.

12. What are properties in C#?

In C#, a property is a member of a class that provides a way to read, write or compute the value of a private field. It exposes a public interface to access and modify the data stored in a class while allowing the class to maintain control over how that data is accessed and manipulated.

Properties are declared using the get and set accessors, which define the behavior for getting or setting the property value. The get accessor retrieves the property's value, while the set accessor sets the property's value. A property can have one or both accessors, depending on whether it is read-only, write-only, or read-write.

For example, consider a Person class with a private field name. Then, a property Name can be created to provide access to this field like this.

class Person
{
    private string name;

    public string Name
    {
        get { return name; }
        set { name = value; }
    }
}

This property allows the name field to be accessed from outside the class but only through the property methods. This provides a level of encapsulation and controls over how the data is accessed and modified.

Properties in C# are an essential part of object-oriented programming and are widely used in applications to provide a clean and safe way to access and modify class data.

Learn more here: Property in C#

13. What is an extension method in C#?

In C#, an extension method is a static method used to extend the functionality of an existing type without modifying the original type or creating a new derived type. Extension methods allow developers to add methods to existing types, such as classes, structs, interfaces, enums, etc., not originally defined in those types.

Extension methods are declared in a static class and are defined as static methods with a special first parameter called the "this" parameter. The "this" parameter specifies the type being extended and allows the extension method to be called as if it were an instance method of that type.

For example, consider the following extension method that extends the string type by providing a method to capitalize the first letter of the string:

public static class StringExtensions
{
    public static string CapitalizeFirstLetter(this string str)
    {
        if (string.IsNullOrEmpty(str))
            return str;
        return char.ToUpper(str[0]) + str.Substring(1);
    }
}

With this extension method, the CapitalizeFirstLetter method can be called on any string object like this:

string s = "hello world";
string capitalized = s.CapitalizeFirstLetter(); // "Hello world"

Note that the CapitalizeFirstLetter method is not defined in the string class but rather an extension method provided by the StringExtensions class.

Extension methods are a powerful feature in C# that allows developers to easily add new functionality to existing types and are widely used in applications to simplify code and improve code readability.

You can read these articles, Extension Methods in C#, for more details on extension methods.

14. What is the difference between Dispose and Finalize in C#?

In C#, both the Dispose and Finalize methods are used to release resources, but they serve different purposes and behaviors.

The Dispose method releases unmanaged resources, such as file handles or database connections, not automatically managed by the .NET runtime. It is typically implemented in a class that implements the IDisposable interface, which defines the Dispose method.

The Dispose method is called explicitly by client code to release resources when they are no longer needed. It can be called implicitly using the statement, which ensures that the Dispose method is called when the object goes out of scope.

On the other hand, the Finalize method is used to perform cleanup operations on an object just before it is garbage collected. Therefore, it is typically implemented in a class that overrides the Object.Finalize method.

The garbage collector calls the Finalize method, which automatically manages the memory of .NET objects, to release unmanaged resources that have not been explicitly released by the Dispose method.

The main difference between the two methods is that the Dispose method is deterministic and can be explicitly called by client code. In contrast, the Finalize method is non-deterministic and is called by the garbage collector at an undetermined time.

It is important to note that objects that implement the Dispose method should also implement the Finalize method as a backup mechanism in case the client code does not call the Dispose method.

In summary, the Dispose method is used to release unmanaged resources deterministically. In contrast, the Finalize method is used as a backup mechanism to release unmanaged resources when the object is garbage collected.

For more details, follow this link, Back To Basics - Dispose Vs. Finalize.

15. What is the difference between String and StringBuilder in C#?

StringBuilder and string are used to string values, but both have many differences on the basis of instance creation and performance.

String

A string is an immutable object. Immutable is when we create string objects in code so we cannot modify or change that object in any operations like inserting the new value or replacing or appending any value with the existing value in a string object. When we have to do some operations to change a string, simply it will dispose of the old value of the string object, and it will create a new instance in memory to hold the new value in a string object, for example:

ASP.NET

Note

  • It’s an immutable object that holds a string value.
  • Performance-wise, a string is slow because it creates a new instance to override or change the previous value.
  • String belongs to the System namespace.

StringBuilder

System.Text.StringBuilder is a mutable object that holds the string value; mutable means once we create a System.Text.Stringbuilder object. We can use this object for any operation, like inserting value in an existing string with insert functions and replacing or appending without creating a new instance of the System.Text.StringBuilder for every time, so it’s using the previous object. That way, it works fast compared to the System.String. Let’s see an example to understand System.Text.StringBuilder. 

ASP.NET

Note

  • StringBuilder is a mutable object.
  • Performance-wise, StringBuilder is very fast because it will use the same instance of the StringBuilder object to perform any operation, like inserting a value in the existing string.
  • StringBuilder belongs to System.Text namespace.

Read the following article, Comparison of String and StringBuilder in C#, for more details.

16. What is the use of a delegate in C#?

A Delegate is an abstraction of one or more function pointers (as existed in C++; the explanation about this is out of the scope of this article). The .NET has implemented the concept of function pointers in the form of delegates. With delegates, you can treat a function as data. Delegates allow functions to be passed as parameters, returned from a function as a value, and stored in an array. Delegates have the following characteristics:

  • Delegates are derived from the System.MulticastDelegate class.
  • They have a signature and a return type. A function that is added to delegates must be compatible with this signature.
  • Delegates can point to either static or instance methods.
  • Once a delegate object has been created, it may dynamically invoke the methods it points to at runtime.
  • Delegates can call methods synchronously and asynchronously.

The delegate contains a couple of useful fields. The first one holds a reference to an object, and the second holds a method pointer. When invoking the delegate, the instance method is called on the contained reference. However, if the object reference is null, then the runtime understands this to mean that the method is a static method. Moreover, invoking a delegate syntactically is the same as calling a regular function. Therefore, delegates are perfect for implementing callbacks.

Why Do We Need Delegates?

Historically, the Windows API made frequent use of C-style function pointers to create callback functions. Using a callback, programmers were able to configure one function to report back to another function in the application. So the objective of using a callback is to handle button-clicking, menu-selection, and mouse-moving activities. But the problem with this traditional approach is that the callback functions were not type-safe. In the .NET framework, callbacks are still possible using delegates with a more efficient approach. However, delegates maintain three important pieces of information:

  • The parameters of the method.
  • The address of the method it calls.
  • The return type of the method.

A delegate is a solution for situations where you want to pass methods around to other methods. You are so accustomed to passing data to methods as parameters that the idea of passing methods as an argument instead of data might sound strange. However, there are cases in which you have a method that does something, for instance, invoking some other method. You do not know at compile time what this second method is. That information is available only at runtime. Hence Delegates are the device to overcome such complications.

Learn more about Delegates and Events in C# .NET

17. What are sealed classes in C#?

Sealed classes are used to restrict the inheritance feature of object-oriented programming. Once a class is defined as a sealed class, the class cannot be inherited. 

In C#, the sealed modifier defines a class as sealed. In Visual Basic .NET, the Not Inheritable keyword serves the purpose of the sealed class. The compiler throws an error if a class is derived from a sealed class. 

If you have ever noticed, structs are sealed. You cannot derive a class from a struct. 

The following class definition defines a sealed class in C#:

// Sealed class    
sealed class SealedClass    
{       
}

Learn more about sealed classes here: Sealed Classes in C#

18. What are partial classes in C#? Why do we need partial classes?

A partial class is only used to split the definition of a class into two or more classes in the same source code file or more than one source file. You can create a class definition in multiple files, which will be compiled as one class at run time. Also, when you create an instance of this class, you can access all the methods from all source files with the same object.

Partial Classes can be created in the same namespace. However, creating a partial class in a different namespace is impossible. So use the “partial” keyword with all the class names you want to bind with the same name of a class in the same namespace. Let’s see an example:

ASP.NET  

To learn about partial classes, visit Partial Classes in C# With Real Example.

19. What is the difference between boxing and unboxing in C#?

Boxing and Unboxing are both used for type converting, but they have some differences:

Boxing

Boxing is converting a value type data type to the object or any interface data type implemented by this value type. For example, when the CLR boxes, a value means when CLR converts a value type to Object Type, it wraps the value inside a System.Object and stores it on the heap area in the application domain. 

Example

ASP.NET

Unboxing** **

Unboxing is also a process to extract the value type from the object or any implemented interface type. Boxing may be done implicitly, but unboxing has to be explicit by code. 

Example:** **

 ASP.NET

The concept of boxing and unboxing underlies the C# unified view of the type system in which a value of any type can be treated as an object.

To learn more about boxing and unboxing, visit Boxing and Unboxing in C#.

20. What is IEnumerable<> in C#?

IEnumerable is the parent interface for all non-generic collections in System.Collections namespace like ArrayList, HastTable, etc. that can be enumerated. The generic version of this interface is IEnumerable<T>, a parent interface of all generic collections classes in the System.Collections.Generic namespace like List<> and more. 

In System.Collections.Generic.IEnumerable<T> have only a single method which is GetEnumerator(), that returns an IEnumerator. IEnumerator provides the power to iterate through the collection by exposing a Current property and Move Next and Reset methods if we don’t have this interface as a parent, so we can’t use iteration by foreach loop or can’t use that class object in our LINQ query.

ASP.NET  

For more details, visit Implement IEnumerable Interface in C#.

21. What is the difference between late and early binding in C#?

Early Binding and Late Binding concepts belong to polymorphism in C#. Polymorphism is the feature of object-oriented programming that allows a language to use the same name in different forms. For example, a method named Add can add integers, doubles, and decimals.

Polymorphism we have two different types to achieve: 

  • Compile Time is also known as Early Binding or Overloading.
  • Run Time is also known as Late Binding or Overriding.

Compile Time Polymorphism or Early Binding** **

In Compile time polymorphism or Early Binding, we will use multiple methods with the same name but different types of parameters or maybe the number of parameters. Because of this, we can perform different-different tasks with the same method name in the same class, also known as Method overloading.

See how we can do that in the following example:

ASP.NET 

Run Time Polymorphism or Late Binding

Run time polymorphism is also known as late binding. In Run Time Polymorphism or Late Binding, we can use the same method names with the same signatures, which means the same type or number of parameters, but not in the same class because the compiler doesn’t allow that at compile time. Therefore, we can use that bind at run time in the derived class when a child or derived class object is instantiated. That’s why we call it Late Binding. We have to create my parent class functions as partial and in the driver or child class as override functions with the override keyword. 

Example

ASP.NET 

Learn more here, Understanding Polymorphism in C#.

22. What are the differences between IEnumerable and IQueryable?

Before we go into the differences, let's learn what IEnumerable and IQueryable are.

IEnumerable

It is the parent interface for all non-generic collections in System.Collections namespace like ArrayList, HastTable, etc. that can be enumerated. The generic version of this interface is IEnumerable<T>, a parent interface of all generic collections classes in the System.Collections.Generic namespace, like List<> and more. 

IQueryable** **

As per MSDN, the IQueryable interface is intended for implementation by query providers. Therefore, it should only be implemented by providers that also implement IQueryable<T>. If the provider does not also implement IQueryable<T>, the standard query operators cannot be used on the provider's data source.

The IQueryable interface inherits the IEnumerable interface so that if it represents a query, the results of that query can be enumerated. Enumeration causes the expression tree associated with an IQueryable object to be executed. The definition of "executing an expression tree" is specific to a query provider. For example, it may involve translating the expression tree to an appropriate query language for the underlying data source. Queries that do not return enumerable results are executed when the Execute method is called.

ASP.NET  

Learn more here: IEnumerable vs. IQuerable.

23. What happens if the inherited interfaces have conflicting method names?

We don't need to define all if we implement multiple interfaces in the same class with conflict method names. In other words, we can say if we have conflict methods in the same class, we can’t implement their body independently in the same class because of the same name and same signature. Therefore, we must use the interface name before the method name to remove this method confiscation. Let’s see an example:

interface testInterface1 {  
    void Show();  
}  
interface testInterface2 {  
    void Show();  
}  
class Abc: testInterface1,  
    testInterface2 {  
        void testInterface1.Show() {  
            Console.WriteLine("For testInterface1 !!");  
        }  
        void testInterface2.Show() {  
            Console.WriteLine("For testInterface2 !!");  
        }  
    }

Now see how to use these in a class:

class Program {  
    static void Main(string[] args) {  
        testInterface1 obj1 = new Abc();  
        testInterface1 obj2 = new Abc();  
        obj1.Show();  
        obj2.Show();  
        Console.ReadLine();  
    }  
}

Output

ASP.NET 

For one more example, follow the link: Inherit Multiple Interfaces, and They have Conflicting Method Name.

24. What are the Arrays in C#?

In C#, an array index starts at zero. That means the first item of an array starts at the 0th position. Therefore, the position of the last item on an array will total the number of items - 1. So if an array has ten items, the previous 10th item is in the 9th position. 

In C#, arrays can be declared as fixed-length or dynamic.

fixed-length array can store a predefined number of items.

dynamic array does not have a predefined size. Instead, the size of a dynamic array increases as you add new items to the array. You can declare an array of fixed length or dynamic. You can even change a dynamic array to static after it is defined.

Let's take a look at simple declarations of arrays in C#. The following code snippet defines the simplest dynamic array of integer types with no fixed size.

int[] intArray;

As you can see from the above code snippet, the declaration of an array starts with a type of array followed by a square bracket ([]) and the name of the array.

The following code snippet declares an array that can store five items only, starting from index 0 to 4. 

int[] intArray;    
intArray = new int[5];

 The following code snippet declares an array that can store 100 items from index 0 to 99. 

int[] intArray;    
intArray = new int[100];

 Learn more about Arrays in C#: Working with Arrays In C#

25. What is the Constructor Chaining in C#? 

Constructor chaining is a way to connect two or more classes in a relationship as Inheritance. In Constructor Chaining, every child class constructor is mapped to a parent class Constructor implicitly by the base keyword, so when you create an instance of the child class, it will call the parent’s class Constructor. Without it, inheritance is not possible.

For more examples, follow the link: Constructors In C# 

26. What’s the difference between the Array.CopyTo() and Array.Clone()?

The Array.Clone() method creates a shallow copy of an array. A shallow copy of Array copies only the elements of the Array, whether reference types or value types, but it does not copy the objects that the references refer to. The references in the new Array point to the same objects as those in the original Array.

The CopyTo() static method of the Array class copies a section of an array to another array. The CopyTo method copies all the elements of an array to another one-dimension array. For example, the code listed in Listing nine copies the contents of an integer array to various object types. 

Learn more about arrays here, Working with Arrays in C#.

27. Can Multiple Catch Blocks be executed in C#? 

We can use multiple catch blocks with a try statement. This is because each catch block can catch a different exception. The following code example shows how to implement multiple catch statements with a single try statement.

using System;    
class MyClient {    
    public static void Main() {    
        int x = 0;    
        int div = 0;    
        try {    
            div = 100 / x;    
            Console.WriteLine("Not executed line");    
        } catch (DivideByZeroException de) {    
            Console.WriteLine("DivideByZeroException");    
        } catch (Exception ee) {    
            Console.WriteLine("Exception");    
        } finally {    
            Console.WriteLine("Finally Block");    
        }    
        Console.WriteLine("Result is {0}", div);    
    }    
}

To learn more about Exception Handling in C#, please visit, Exception Handling in C#.

28. What is the Singleton Design Pattern, and how to implement it in C#?

The Singleton Design Pattern is a creational design pattern that ensures that a class has only one instance, and provides a global point of access to that instance. In addition, this pattern controls object creation, limiting the number of instances that can be created to a single instance, which is shared throughout the application.

In a typical Singleton implementation, the Singleton class has a private constructor to prevent direct instantiation and a static method that returns the single instance of the class. The first time the static method is called, it creates a new instance of the class and stores it in a private static variable. Subsequent calls to the static method return the same instance.

For example, consider a Singleton class DatabaseConnection used to manage a database connection. The class could be implemented like this:

public class DatabaseConnection
{
    private static DatabaseConnection instance;
    private DatabaseConnection() { }

    public static DatabaseConnection GetInstance()
    {
        if (instance == null)
            instance = new DatabaseConnection();
        return instance;
    }

    // Database connection methods
    public void Connect() { /* ... */ }
    public void Disconnect() { /* ... */ }
}

In this implementation, the GetInstance method is used to create or retrieve the single instance of the class. The constructor is private, so the class cannot be instantiated directly from outside the class.

Singletons are widely used in applications for managing resources that are expensive to create or have limited availability, such as database connections, network sockets, logging systems, etc.

It is important to note that Singleton classes can introduce potential issues such as global state and difficulty with unit testing, so they should be used with care and only when necessary.

To read more about the singleton design pattern in depth, please read Singleton Design Pattern in C#.

29. Difference between Throw Exception and Throw Clause 

The basic difference is that the Throw exception overwrites the stack trace. It is hard to find the original code line number that has thrown the exception.

Throw basically retains the stack information and adds to the stack information in the exception that it is thrown.

Let's see what it means to understand the differences better. I am using a console application to easily test and see how the usage of the two differ in their functionality.

using System;  
using System.Collections.Generic;  
using System.Linq;  
using System.Text;  
namespace TestingThrowExceptions {  
    class Program {  
        public void ExceptionMethod() {  
            throw new Exception("Original Exception occurred in ExceptionMethod");  
        }  
        static void Main(string[] args) {  
            Program p = new Program();  
            try {  
                p.ExceptionMethod();  
            } catch (Exception ex) {  
                throw ex;  
            }  
        }  
    }  
}

Now run the code by pressing the F5 key and see what happens. It returns an exception and looks at the stack trace.

Please visit the Difference Between Throw Exception and Throw Clause to learn more about throw exceptions. 

30. What are Indexers in C#?

C# introduces a new concept known as Indexers, which are used for treating an object as an array. The indexers are usually known as smart arrays in C#. However, they are not an essential part of object-oriented programming.

Defining an indexer allows you to create classes that act as virtual arrays. Then, instances of that class can be accessed using the [] array access operator.

Creating an Indexer

< modifier > <    
return type > this[argument list] {    
    get {    
        // your get block code    
    }    
    set {    
        // your set block code    
    }    
}

In the above code,

<modifier>

It can be private, public, protected, or internal.

<return type>

It can be any valid C# type.

To learn more about indexers in C#, visit Indexers in C#.

31. What is a multicast delegate in C#?

Delegate is one of the base types in .NET. Delegate is a class used to create and invoke delegates at runtime.

A delegate in C# allows developers to treat methods as objects and invoke them from their code.

Implement Multicast Delegates Example:

using System;    
using System.Collections.Generic;    
using System.Linq;    
using System.Text;    
delegate void MDelegate();    
class DM {    
    static public void Display() {    
        Console.WriteLine("Meerut");    
    }    
    static public void print() {    
        Console.WriteLine("Roorkee");    
    }    
}    
class MTest {    
    public static void Main() {    
        MDelegate m1 = new MDelegate(DM.Display);    
        MDelegate m2 = new MDelegate(DM.print);    
        MDelegate m3 = m1 + m2;    
        MDelegate m4 = m2 + m1;    
        MDelegate m5 = m3 - m2;    
        m3();    
        m4();    
        m5();    
    }    
}

Learn more about delegates in C# here, Delegates in C#.

32. Difference between the Equality Operator (==) and Equals() Method in C#

The == Operator and the Equals() method compare two value type data items or reference type data items. The Equality Operator (==) is the comparison operator, and the Equals() method compares the contents of a string. The == Operator compares the reference identity while the Equals() method compares only contents. Let’s see some examples.

In this example, we assigned a string variable to another variable. A string is a reference type. So, in the following example, a string variable is assigned to another string variable, referring to the same identity in a heap, and both have the same content. Hence, you get True output for the == Operator and Equals() methods.

using System;    
namespace ComparisionExample {    
    class Program {    
        static void Main(string[] args) {    
            string name = "sandeep";    
            string myName = name;    
            Console.WriteLine("== operator result is {0}", name == myName);    
            Console.WriteLine("Equals method result is {0}", name.Equals(myName));    
            Console.ReadKey();    
        }    
    }    
}

For more details, check out the following link, Difference Between Equality Operator ( ==) and Equals() Method in C#.

33. What's the Difference between the Is and As operators in C#

"is" operator

In C# language, we use the "is" operator to check the object type. If two objects are of the same type, it returns true; else, it returns false.

Let's understand this in our C# code. First, we declare two classes, Speaker and Author.

class Speaker {    
    public string Name {    
        get;    
        set;    
    }    
}    
class Author {    
    public string Name {    
        get;    
        set;    
    }    
}

Now, let's create an object of the type Speaker:

var speaker = new Speaker { Name="Gaurav Kumar Arora"};

Now, let’s check if the object is Speaker type:

var isTrue = speaker is Speaker;

In the preceding, we are checking the matching type. So, yes, our speaker is an object of Speaker type.

Console.WriteLine("speaker is of Speaker type:{0}", isTrue);

So, the results are true.

But, here we get false:

var author = new Author { Name = "Gaurav Kumar Arora" };     
var isTrue = speaker is Author;     
Console.WriteLine("speaker is of Author type:{0}", isTrue);

Because our speaker is not an object of Author type.

"as" operator

The "as" operator behaves similarly to the "is" operator. The only difference is it returns the object if both are compatible with that type. Else it returns a null.

Let's understand this in our C# code.

public static string GetAuthorName(dynamic obj)     
{     
    Author authorObj = obj as Author;     
    return (authorObj != null) ? authorObj.Name : string.Empty;     
}

We have a method that accepts a dynamic object and returns the object name property if the object is of the Author type. 

Here, we’ve declared two objects:

var speaker = new Speaker { Name="Gaurav Kumar Arora"};   
var author = new Author { Name = "Gaurav Kumar Arora" };

The following returns the "Name" property:

var authorName = GetAuthorName(author);     
Console.WriteLine("Author name is:{0}", authorName);

It returns an empty string:

authorName = GetAuthorName(speaker);     
Console.WriteLine("Author name is:{0}", authorName);

Learn more about is vs. as operators here, "is" and "as" Operators of C#

34. How to use Nullable<> Types in C#?

A nullable type is a data type that contains the defined data type or the null value.

This nullable type concept is not compatible with "var."

Any data type can be declared nullable type with the help of the operator "?". 

For example, the following code declares the int 'i' as a null.

int? i = null;

As discussed in the previous section, "var" is incompatible with nullable types. So, if you declare the following, you will get an error.

var? i = null;

To learn more about nullable types in C#, read the following, Getting started with Nullable Types in C#.

35. What are the Different Ways a Method can be Overloaded?

Method overloading is a way to achieve compile-time polymorphism where we can use a method with the same name but different signatures. For example, the following code example has a method volume with three different signatures based on the number and type of parameters and return values.

Example

using System;    
using System.Collections.Generic;    
using System.Linq;    
using System.Text;    

namespace Hello_Word {    
    class overloding {    
        public static void Main() {    
            Console.WriteLine(volume(10));    
            Console.WriteLine(volume(2.5F, 8));    
            Console.WriteLine(volume(100L, 75, 15));    
            Console.ReadLine();    
        }    

        static int volume(int x) {    
            return (x * x * x);    
        }    

        static double volume(float r, int h) {    
            return (3.14 * r * r * h);    
        }    

        static long volume(long l, int b, int h) {    
            return (l * b * h);    
        }    
    }    
}

Note 

Suppose we have a method with two parameter object types and the same name method with two integer parameters when we call that method with an int value. In that case, it will call that method with integer parameters instead of the object type parameters method.

Read the following article to learn more here, Method Overloading in C#.

36. What is an Object Pooling?

Object Pooling in .NET allows objects to be kept in the memory pool so they can be reused without recreating them. This article explains what object pooling is in .NET and how to implement object pooling in C#.

What does it mean?

An object pool is a container of objects that are ready for use. Whenever there is a request for a new object, the pool manager will take the request, which will be served by allocating an object from the pool.

How does it work?

We are going to use the Factory pattern for this purpose. We will have a factory method, which will take care of the creation of objects. Whenever there is a request for a new object, the factory method will look into the object pool (we use Queue object). If there is any object available within the allowed limit, it will return the object (value object). Otherwise, a new object will be created and given you back.

To learn more about object pooling in C# and .NET, read Object Pooling in .NET.

37. What are Generics in C#?

Generics allow you to delay the specification of the data type of programming elements in a class or a method until it is used in the program. In other words, generics allow you to write a class or method that can work with any data type.

You write the specifications for the class or the method, with substitute parameters for data types. When the compiler encounters a constructor for the class or a function call for the method, it generates code to handle the specific data type.

ASP.NET

Generic classes and methods combine reusability, type safety, and efficiency in a way their non-generic counterparts cannot. Generics are most frequently used with collections and the methods that operate on them. Version 2.0 of the .NET Framework class library provides a new namespace, System.Collections.Generic that contains several new generic-based collection classes. It is recommended that all applications that target the .NET Framework 2.0 and later use the new generic collection classes instead of the older non-generic counterparts, such as ArrayList.

Features of Generics

Generics are a technique that enriches your programs in the following ways:

  • First, it helps you to maximize code reuse, type safety, and performance.
  • You can create generic collection classes. The .NET Framework class library contains several new generic collection classes in the System.Collections.Generic namespace. You may use these generic collection classes instead of the collection classes in the System.Collections namespace.
  • You can create your own generic interfaces, classes, methods, events, and delegates.
  • You may create generic classes constrained to enable access to methods on specific data types.
  • You may get information on the types used in a generic data type at run-time using reflection.

Learn more about generic classes in C# here, Using Generics In C#.

38. What is the role of access modifiers?

Access modifiers are keywords used to specify the declared accessibility of a member or a type.

Access modifiers are keywords used to specify the scope of accessibility of a member of a type or the type itself. For example, a public class is accessible to the entire world, while an internal class may be accessible to the assembly only. 

Why use access modifiers?

Access modifiers are an integral part of object-oriented programming. Access modifiers are used to implement the encapsulation of OOP. In addition, access modifiers allow you to define who does or doesn't have access to certain features.

In C#, there are six different types of Access Modifiers:

Modifier Description
public There are no restrictions on accessing public members.
private Access is limited to within the class definition. This is the default access modifier type if none is formally specified
protected Access is limited to within the class definition and any class that inherits from the class
internal Access is limited exclusively to classes defined within the current project assembly
protected internal Access is limited to the current assembly and types derived from the containing class. All members in the current project and the derived class can access the variables.
private protected Access is limited to the containing class or types derived from the containing class within the current assembly.

To learn more about access modifiers in C#, click here; what are Access Modifiers in C#?

39. What is a Virtual Method in C#?

A virtual method is a method that can be redefined in derived classes. A virtual method has an implementation in a base class and a derived from the class. It is used when a method's basic functionality is the same, but sometimes more functionality is needed in the derived class. A virtual method is created in the base class that can be overridden in the derived class. We create a virtual method in the base class using the virtual keyword, and that method is overridden in the derived class using the override keyword.

When a method is declared as a virtual method in a base class, it can be defined in a base class, and it is optional for the derived class to override that method. The overriding method also provides more than one form for a method. Hence, it is also an example of polymorphism.

When a method is declared as a virtual method in a base class and has the same definition in a derived class, there is no need to override it in the derived class. But when a virtual method has a different definition in the base class and the derived class, it is necessary to override it in the derived class.

When a virtual method is invoked, the object's run-time type is checked for an overriding member. First, the overriding member in the most derived class is called, which might be the original member if no derived class has overridden the member.

Virtual Method

  1. By default, methods are non-virtual. Therefore, we can't override a non-virtual method.
  2. We can't use the virtual modifier with static, abstract, private, or override modifiers.

Learn more about virtual methods in C# here, Virtual Method in C#.

40. What is the difference between an Array and ArrayList in C#?

Here is a list of differences between the two:

Correction: Re: #40 -- ArrayList does not use a LinkedList -- it uses a backing Array that dynamically changes size. See comments. 

To learn more about arrays, collections, and ArrayLists, click here, Collections in C#: ArrayList and Arrays.

41. What are Value types and Reference types in C#?

In C#, data types can be of two types, value types, and reference types. Value-type variables contain their object (or data) directly. If we copy one value type variable to another, we make a copy of the thing for the second variable. Both of them will independently operate on their values, Value type data types are stored on a stack, and reference data types are stored on a heap.

In C#, basic data types include int, char, bool, and long, which are value types. In addition, classes and collections are reference types.

For more details, follow this link, C# Concepts: Value Type and Reference Type.

42. What is Serialization in C#?

Serialization in C# converts an object into a stream of bytes to store the object in memory, a database, or a file. Its main purpose is to save the state of an object from being able to recreate it when needed. The reverse process is called deserialization.

There are three types of serialization,

  1. Binary serialization (Save your object data into binary format).
  2. Soap Serialization (Save your object data into binary format; mainly used in network-related communication).
  3. XmlSerialization (Save your object data into an XML file).

Learn more about serialization in C# here, Serializing Objects in C#

43. How do you use the “using” statement in C#?

There are two ways to use the using keyword in C#. One is as a directive, and the other is as a statement. Let's explain!

  1. using Directive

    Generally, we use the using keyword to add namespaces in code-behind and class files. Then it makes available all the classes, interfaces, and abstract classes and their methods and properties on the current page. Adding a namespace can be done in the following two ways:

  2. Using Statement

    This is another way to use the using keyword in C#. It plays a vital role in improving performance in Garbage Collection.

Learn more here, The "Using" Statement in C#

44. What is a Jagged Array in C#?

A jagged array is an array whose elements are arrays. The elements of a jagged array can be of different dimensions and sizes. A jagged array is sometimes called an "array of arrays."

A special type of array is introduced in C#. A Jagged Array is an array of an array in which the length of each array index can differ.

Example

int[][] jagArray = new int[5][];

In the above declaration, the rows are fixed in size. But columns are not specified as they can vary.

Declaring and initializing a jagged array.

int[][] jaggedArray = new int[5][];
jaggedArray[0] = new int[3];
jaggedArray[1] = new int[5];
jaggedArray[2] = new int[2];
jaggedArray[3] = new int[8];
jaggedArray[4] = new int[10];
jaggedArray[0] = new int[] { 3, 5, 7, };
jaggedArray[1] = new int[] { 1, 0, 2, 4, 6 };
jaggedArray[2] = new int[] { 1, 6 };
jaggedArray[3] = new int[] { 1, 0, 2, 4, 6, 45, 67, 78 };
jaggedArray[4] = new int[] { 1, 0, 2, 4, 6, 34, 54, 67, 87, 78 };

Learn more here, Jagged Array in C#

45. What is Multithreading with .NET?

Multithreading allows a program to run multiple threads concurrently. This article explains how multithreading works in .NET. This article covers the entire range of threading areas, from thread creation, race conditions, deadlocks, monitors, mutexes, synchronization, semaphores, etc.

The real usage of a thread is not about a single sequential thread but rather using multiple threads in a single program. Multiple threads running at the same time and performing various tasks are referred to as Multithreading. A thread is considered a lightweight process because it runs within the context of a program and takes advantage of the resources allocated for that program.

A single-threaded process contains only one thread, while a multithreaded process contains more than one thread for execution.

To learn more about threading in .NET, visit Multithreading with .NET.

46. What are Anonymous Types in C#?

Anonymous types allow us to create new types without defining them. This is a way of defining read-only properties in a single object without having to define each type explicitly. Here, the Type is generated by the compiler and is accessible only for the current block of code. The type of properties is also inferred by the compiler.

We can create anonymous types using the “new” keyword and the object initializer. 

Example

var anonymousData = new     
{    
    ForeName = "Jignesh",    
    SurName = "Trivedi"    
};    
Console.WriteLine("First Name : " + anonymousData.ForeName);

Anonymous Types with LINQ Example

Anonymous types are also used with the "Select" clause of the LINQ query expression to return a subset of properties.

Example

If any object collection has properties calling FirstName, LastName, DOB, etc... and you want only FirstName and LastName after Querying the data, then:

class MyData {    
        public string FirstName {    
            get;    
            set;    
        }    
        public string LastName {    
            get;    
            set;    
        }    
        public DateTime DOB {    
            get;    
            set;    
        }    
        public string MiddleName {    
            get;    
            set;    
        }    
    }    
    static void Main(string[] args) {    
        // Create Dummy Data to fill Collection.    
        List < MyData > data = new List < MyData > ();    
        data.Add(new MyData {    
            FirstName = "Jignesh", LastName = "Trivedi", MiddleName = "G", DOB = new DateTime(1990, 12, 30)    
        });    
        data.Add(new MyData {    
            FirstName = "Tejas", LastName = "Trivedi", MiddleName = "G", DOB = new DateTime(1995, 11, 6)    
        });    
        data.Add(new MyData {    
            FirstName = "Rakesh", LastName = "Trivedi", MiddleName = "G", DOB = new DateTime(1993, 10, 8)    
        });    
        data.Add(new MyData {    
            FirstName = "Amit", LastName = "Vyas", MiddleName = "P", DOB = newDateTime(1983, 6, 15)    
        });    
        data.Add(new MyData {    
            FirstName = "Yash", LastName = "Pandiya", MiddleName = "K", DOB = newDateTime(1988, 7, 20)    
        });    
    }    
    var anonymousData = from pl in data    
    select new {    
        pl.FirstName, pl.LastName    
    };    
    foreach(var m in anonymousData) {    
        Console.WriteLine("Name : " + m.FirstName + " " + m.LastName);    
    }    
}

47. What is a Hashtable in C#?

A Hashtable is a collection that stores (Keys, Values) pairs. Here, the Keys are used to find the storage location, are immutable, and cannot have duplicate entries in a Hashtable. The .Net Framework has provided a Hash Table class that contains all the functionality required to implement a hash table without any additional development. The hash table is a general-purpose dictionary collection. Each item within the collection is a DictionaryEntry object with two properties: a key object and a value object. These are known as Key/Value. A hash code is generated automatically when items are added to a hash table. This code is hidden from the developer. Access to the table's values is achieved using the key object for identification. As the items in the collection are sorted according to the hidden hash code, the items should be considered randomly ordered.

The Hashtable Collection

The Base Class libraries offer a Hashtable Class defined in the System.Collections namespace, so you don't have to code your own hash tables. Instead, it processes each key of the hash that you add every time and then uses the hash code to look up the element very quickly. The capacity of a hash table is the number of elements the hash table can hold. As elements are added to a hash table, the capacity is automatically increased as required through reallocation. It is an older .Net Framework type.

Declaring a Hashtable

The Hashtable class is generally found in the namespace called System.Collections. So to execute any of the examples, we have to add using System.Collections; to the source code. The declaration for the Hashtable is:

Hashtable HT = new Hashtable ();

48. What is LINQ in C#?

LINQ stands for Language Integrated Query. LINQ is a data querying methodology that provides capabilities to .NET languages with a syntax similar to a SQL query.

LINQ has the great power to query any source of data. The data source could be collections of objects, databases, or XML files. We can easily retrieve data from any object that implements the IEnumerable<T> interface.

Advantages of LINQ 

  1. LINQ offers an object-based, language-integrated way to query data no matter where that data came from. So through LINQ, we can query a database, XML, and collections. 
  2. Compile-time syntax checking.

It allows you to query collections like arrays, enumerable classes, etc... in the native language of your application, like in VB or C#, in much the same way you would query a database using SQL.

ASP.NET

49. What is File Handling in C#.Net?

The System.IO namespace provides four classes that allow you to manipulate individual files and interact with a machine directory structure. The Directory and File directly extend System.Object supports file creation, copying, moving, and deleting using various static methods. However, they only contain static methods and are never instantiated. The FileInfo and DirecotryInfo types are derived from the abstract class FileSystemInfo type. They are typically employed for obtaining the full details of a file or directory because their members tend to return strongly typed objects. They implement roughly the same public methods as a Directory and a File, but they are stateful, and members of these classes are not static.

ASP.NET

For more details, follow the links, File Handling in C# .NET

50. What is Reflection in C#?

Reflection is the process of runtime type discovery to inspect metadata, CIL code, late binding, and self-generating code. At the run time, by using reflection, we can access the same "type" information displayed by the ildasm utility at design time. The reflection is analogous to reverse engineering in which we can break an existing .exe or .dll assembly to explore defined significant content information, including methods, fields, events, and properties.

Using the System, you can dynamically discover the set of interfaces supported by a given type.Reflection namespace.

Reflection is typically used to dump out the loaded assemblies list, their reference to inspect methods, properties, etcetera. Reflection is also used in external disassembling tools such as Reflector, Fxcop, and NUnit because .NET tools don't need to parse the source code, similar to C++. 

Metadata Investigation 

The following program depicts the process of reflection by creating a console-based application. This program will display the details of the fields, methods, properties, and interfaces for any type within the mscorlib.dll assembly. Before proceeding, it is mandatory to import "System.Reflection".

Here, we define several static methods in the program class to enumerate fields, methods, and interfaces in the specified type. The static method takes a single "System.Type" parameter and returns void.

static void FieldInvestigation(Type t) {    
    Console.WriteLine("*********Fields*********");    
    FieldInfo[] fld = t.GetFields();    
    foreach(FieldInfo f in fld) {    
        Console.WriteLine("-->{0}", f.Name);    
    }    
}    

static void MethodInvestigation(Type t) {    
    Console.WriteLine("*********Methods*********");    
    MethodInfo[] mth = t.GetMethods();    
    foreach(MethodInfo m in mth) {    
        Console.WriteLine("-->{0}", m.Name);    
    }    
}

Summary

I hope these 50 C# interview questions and their answers will help you pass your next C# and .NET interview. Here are some more interview questions and answers.


Recommended Free Ebook
Similar Articles