HomeCSharpExpression Bodies on Methods returning void in C# 6.0

Expression Bodies on Methods returning void in C# 6.0

C# 6.0 Features Series

In one of the previous blog post , we explored one of the feature of C# called Lambda Expression for Function Members in C# 6.0 where the example method used there had a return type of integer. In this blog post , let see the usage of the expression bodies on the methods returning void.

Expression Bodies on Methods returning void in C# 6.0

The Expression bodies can still be used on the methods returning void or Task (async methods) . In this case , it is necessary that expression immediately after the lambda expression syntax (arrow) to be a statement expression.

Below is a sample code snippet demonstrating the usage of the Expression Bodies on Methods returning void in C# 6.0

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

namespace MobileOSGeekApp
{
    class Program
    {
        public static void Display() => Console.WriteLine("Welcome to developerpublish.com .NET Tutorials Section");
        static void Main(string[] args)
        {
            Display();

            Console.ReadLine();
        }
    }
}

Leave a Reply

You May Also Like

This C# program calculates and displays an upper triangular matrix based on user input. Problem Statement: The program takes the...
This C# program serves as a demonstration of bitwise operators, which are fundamental operators used for manipulating individual bits in...
This C# program is designed to interchange or swap the columns of a matrix. A matrix is a two-dimensional array...