Skip to main content

C# : Interview questions (36-40)

 

Questions :

  • How do you implement events in C#?
  • What are lambda expressions?
  • Explain the use of LINQ in C#.
  • What is a lambda expression?
  • How do you create a thread in C#?

Answers :

Implementing Events in C#:

Events in C# are implemented using delegates. Here's how you can declare and raise events in a class:

using System;

public class Button
{
    public event EventHandler Click; // Declare the event

    public void OnClick() // Method to raise the event
    {
        Click?.Invoke(this, EventArgs.Empty);
    }
}

In this example, the Click event is declared as an instance of the EventHandler delegate. The OnClick method raises the event by invoking the delegate with appropriate arguments.

Lambda Expressions:

Lambda expressions in C# are concise syntax for defining anonymous methods or functions. They allow you to write inline code blocks as arguments to methods or to define delegates or expression trees more compactly.

Func<int, int, int> add = (x, y) => x + y; // Lambda expression defining addition
Console.WriteLine(add(2, 3)); // Output: 5

Here, the lambda expression (x, y) => x + y defines an anonymous function that takes two integers x and y as parameters and returns their sum.

LINQ (Language Integrated Query) in C#:

LINQ is a powerful feature in C# that provides a uniform way to query data from various data sources such as collections, arrays, databases, XML, and more. It allows developers to write queries using a SQL-like syntax directly within C# code.

var numbers = new int[] { 1, 2, 3, 4, 5 };
var evenNumbers = numbers.Where(n => n % 2 == 0); // LINQ query to filter even numbers

foreach (var number in evenNumbers)
{
    Console.WriteLine(number); // Output: 2 4
}

In this example, LINQ's Where method is used to filter even numbers from the numbers array based on a lambda expression.

Lambda Expression:

A lambda expression in C# is an anonymous function that can contain expressions and statements. It provides a concise syntax for defining inline functions without having to explicitly declare a separate method.

Func<int, int, int> add = (x, y) => x + y; // Lambda expression defining addition
Console.WriteLine(add(2, 3)); // Output: 5

Here, (x, y) => x + y is a lambda expression that defines an anonymous function taking two integers x and y as parameters and returning their sum.

Creating a Thread in C#:

You can create a thread in C# using the Thread class from the System.Threading namespace. Here's an example:

using System.Threading;

public class Program
{
    public static void Main()
    {
        Thread thread = new Thread(MyThreadMethod);
        thread.Start();
    }

    public static void MyThreadMethod()
    {
        // Thread logic goes here
        Console.WriteLine("Thread is running...");
    }
}
In this example, a new thread is created using the Thread class, and its Start method is called to begin execution of the MyThreadMethod.

Comments

Popular posts from this blog

C# : How can we access private method outside class

Introduction In object-oriented programming, encapsulation is a fundamental principle that restricts direct access to the internal implementation details of a class. Private methods, being part of this internal implementation, are designed to be accessible only within the confines of the class they belong to. However, there might be scenarios where you need to access a private method from outside the class. In this blog post, we'll explore several techniques to achieve this in C#. 1. Reflection: A Powerful Yet Delicate Approach Reflection is a mechanism in C# that allows inspecting and interacting with metadata about types, fields, properties, and methods. While it provides a way to access private methods, it should be used cautiously due to its potential impact on maintainability and performance. using System ; using System . Reflection ; public class MyClass { private void PrivateMethod ( ) { Console . WriteLine ( "This is a private method."

C# : 12.0 : Primary constructor

Introduction In C# 12.0, the introduction of the "Primary Constructor" simplifies the constructor declaration process. Before delving into this concept, let's revisit constructors. A constructor is a special method in a class with the same name as the class itself. It's possible to have multiple constructors through a technique called constructor overloading.  By default, if no constructors are explicitly defined, the C# compiler generates a default constructor for each class. Now, in C# 12.0, the term "Primary Constructor" refers to a more streamlined way of declaring constructors. This feature enhances the clarity and conciseness of constructor declarations in C# code. Lets see an simple example code, which will be known to everyone. public class Version { private int _value ; private string _name ; public Version ( int value , string name ) { _name = name ; _value = value ; } public string Ve

C# : Understanding Types of Classes

In C#, classes serve as the building blocks of object-oriented programming, providing a blueprint for creating objects. Understanding the types of classes and their applications is crucial for designing robust and maintainable software. In this blog, we’ll delve into various types of classes in C#, accompanied by real-world scenarios and code snippets for a practical understanding. 1. Regular (Instance) Classes Definition: Regular classes are the most common type and are used to create instances or objects. They can contain fields, properties, methods, and other members. Example Scenario: A Person class representing individual persons with properties like Name and Age. public class Person { public string Name { get ; set ; } public int Age { get ; set ; } } 2. Static Classes Definition: A static class cannot be instantiated and can only contain static members (methods, properties, fields). It’s often used for utility functions. Example Scenario: A MathUtility cla