Wrong version of .NET Core in one of the projects
This commit is contained in:
18
Books.ConsoleApp/IEnumerableAndIEnumerator.cs
Normal file
18
Books.ConsoleApp/IEnumerableAndIEnumerator.cs
Normal file
@ -0,0 +1,18 @@
|
||||
namespace Books.Examples
|
||||
{
|
||||
|
||||
public interface IEnumerable<out T>
|
||||
{
|
||||
IEnumerator<T> GetEnumerator();
|
||||
}
|
||||
|
||||
public interface IEnumerator<out T>
|
||||
{
|
||||
T Current { get; }
|
||||
|
||||
bool MoveNext();
|
||||
|
||||
void Reset();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user