You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

19 lines
370 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using OgArray = System.Array;
namespace Net3_Proxy
{
public static class Array
{
private static class EmptyArray<T>
{
public static readonly T[] Value = new T[0];
}
public static T[] Empty<T>() => EmptyArray<T>.Value;
}
}