IBuffer.cs 536 B

12345678910111213141516
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the Apache 2.0 License.
  3. // See the LICENSE file in the project root for more information.
  4. using System.Collections.Generic;
  5. namespace System.Linq
  6. {
  7. /// <summary>
  8. /// Represents a buffer exposing a shared view over an underlying enumerable sequence.
  9. /// </summary>
  10. /// <typeparam name="T">Element type.</typeparam>
  11. public interface IBuffer<out T> : IEnumerable<T>, IDisposable
  12. {
  13. }
  14. }