Get Empty Array - CSharp System

CSharp examples for System:Array Element

Description

Get Empty Array

Demo Code

// Copyright (c) Microsoft Corporation. All rights reserved.
using System.Linq;
using System;/*from www. ja v a  2  s  . c  om*/

public class Main{
        public static T[] GetEmptyArray<T>()
        {
            return EmptyArray<T>.Value;
        }
}

Related Tutorials