Empty Array - CSharp System

CSharp examples for System:Array Element

Description

Empty Array

Demo Code


using System;/*from   www .  j  a v  a2s . c o  m*/

public class Main{
        public static T[] Empty<T>()
        {
            return Array.Empty<T>();
        }
}

Related Tutorials