EmptyArray.cs 127 B

1234567
  1. namespace NetMQ
  2. {
  3. internal static class EmptyArray<T>
  4. {
  5. public static readonly T[] Instance = new T[0];
  6. }
  7. }