CSharp examples for System:Array Element
Get Empty Array
// 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; } }