EmptyArray.cs 412 B

123456789101112131415
  1. // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
  2. #if NO_ARRAY_EMPTY
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Threading.Tasks;
  7. namespace System.Linq
  8. {
  9. internal sealed class EmptyArray<TElement>
  10. {
  11. public static readonly TElement[] Value = new TElement[0];
  12. }
  13. }
  14. #endif