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

前端 未结 12 2248
栀梦
栀梦 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:19

    Those are both wasteful and verbose.

    foreach (var name in names)
    {
       Console.WriteLine("{0}1, {0}2, {0}3", name);
    }
    

    .

    
    

提交回复
热议问题