HomeCSharpusing keyword for static class in C# 6.0

using keyword for static class in C# 6.0

C# 6.0 Features Series

In the earlier versions of C# , using keyword was used primarily for the namespaces to be included in the C# page. There were other usages of using keyword like using block , namespace alias etc.

The C# 6.0 lets the developers use the using directive for the static class similar to the one the developers use for namespace.

using keyword for static class in C# 6.0

This feature lets the developers to invoke the static methods of the class without specifying the class name.

Assume that you have a class called Console which has a static method called WriteLine . In C# 5.0 and earlier version , you would end up specifying Console.WriteLine(“developerpublish.com C# tutorials”); as show below.

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

namespace MobileOSGeekApp
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("developerpublish.com C# tutorials");

            Console.ReadLine();
        }
    }
}

In C# 6.0 , you can simply include the class name with the using class Eg : using System.Console; and when using the method , invoke it without the class name as shown below.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Console;
namespace MobileOSGeekApp
{
    class Program
    {
        static void Main(string[] args)
        {
            WriteLine("developerpublish.com C# tutorials");

            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...