Is it better coding practice to define variables outside a foreach even though more verbose?

前端 未结 12 2224
栀梦
栀梦 2020-12-10 10:39

In the following examples:

  • the first seems more verbose but less wasteful of resources
  • the second is less verbose bu
12条回答
  •  遥遥无期
    2020-12-10 11:36

    This is my favourite part of Linq which I guess it fits here:

    names.ForEach(x => Console.WriteLine("{0}1, {0}2, {0}3", x));
    

提交回复
热议问题