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

后端 未结 10 2121
梦如初夏
梦如初夏 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:49

    You can create helper generic, static method to create list:

    internal static class List
    {
        public static List Of(params T[] args)
        {
            return new List(args);
        }
    }
    

    And then usage is very compact:

    List.Of("test1", "test2", "test3")
    

提交回复
热议问题