7 lines
124 B
C#
7 lines
124 B
C#
namespace Microsoft.DiaSymReader;
|
|
|
|
internal static class EmptyArray<T>
|
|
{
|
|
public static readonly T[] Instance = new T[0];
|
|
}
|