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

Your email address will not be published. Required fields are marked *

You May Also Like

C# Compiler Error CS0442 – ‘Property’: abstract properties cannot have private accessors Reason for the Error You’ll get this error...
This is a really simple one . Below is a simple example of an enum called “Designation” defined with the...
This blog post explain the usage of the Checked Block in .NET and how you can use them in Visual...