IEnumerable.cs 423 B

1234567891011121314151617181920
  1. // -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
  2. //
  3. // System.Collections.IEnumerable
  4. //
  5. // Author:
  6. // Vladimir Vukicevic ([email protected])
  7. //
  8. // (C) 2001 Vladimir Vukicevic
  9. //
  10. using System;
  11. using System.Runtime.InteropServices;
  12. namespace System.Collections {
  13. [Guid("496B0ABE-CDEE-11d3-88E8-00902754C43A")]
  14. public interface IEnumerable {
  15. [DispId(-4)]
  16. IEnumerator GetEnumerator();
  17. }
  18. }