theory

  1. A

    Argument Plurality

    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...
Back
Top Bottom