Does it make sense to create my own IEnumerable<T> interface with the
#DefaultInterfaceMember IEnumerable.GetEnumerator() in it? It saves me to write this method myself in each class which implements the original IEnumerable<T> interface.
#dotnet #charp #csharp8