CSharp examples for System:Array Element
Empty Array
using System;/*from www . j a v a2s . c o m*/ public class Main{ public static T[] Empty<T>() { return Array.Empty<T>(); } }