Quick way to create a list of values in C#?

后端 未结 10 2126
梦如初夏
梦如初夏 2021-01-31 13:14

I\'m looking for a quick way to create a list of values in C#. In Java I frequently use the snippet below:

List l = Arrays.asList(\"test1\",\"test2         


        
10条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-31 13:32

    You can simplify that line of code slightly in C# by using a collection initialiser.

    var lst = new List {"test1","test2","test3"};
    

提交回复
热议问题