This post discusses a hypothetical C# feature called 'Argument Plurality'.
Consider the following:
foreach (var name in names)
print(name);
Being written as:
for (each var name in names) // replaces foreach
print(name);
The introduced 'each' keyword allows iteration-over-collection to...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.