Created
April 23, 2013 12:49
-
-
Save jraregris/5443295 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Type: System.Collections.Generic.IEnumerable`1 | |
| // Assembly: mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 | |
| // Assembly location: C:\Windows\Microsoft.NET\Framework\v4.0.30319\mscorlib.dll | |
| using System.Collections; | |
| using System.Runtime.CompilerServices; | |
| namespace System.Collections.Generic | |
| { | |
| /// <summary> | |
| /// Exposes the enumerator, which supports a simple iteration over a collection of a specified type. | |
| /// </summary> | |
| /// <typeparam name="T">The type of objects to enumerate.This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.</typeparam><filterpriority>1</filterpriority> | |
| [TypeDependency("System.SZArrayHelper")] | |
| [__DynamicallyInvokable] | |
| public interface IEnumerable<out T> : IEnumerable | |
| { | |
| /// <summary> | |
| /// Returns an enumerator that iterates through the collection. | |
| /// </summary> | |
| /// | |
| /// <returns> | |
| /// A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection. | |
| /// </returns> | |
| /// <filterpriority>1</filterpriority> | |
| [__DynamicallyInvokable] | |
| new IEnumerator<T> GetEnumerator(); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment