I\'m trying to make some code more readable. For Example foreach(var row in table) {...} rather than foreach(DataRow row in table.Rows) {...}.
foreach(var row in table) {...}
foreach(DataRow row in table.Rows) {...}
Current proposal to add GetEnumerator via Extension to C# https://github.com/dotnet/csharplang/issues/3194