convertion (generics)

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • csharpula csharp

    convertion (generics)



    Hello ,is there a good way to convert from string[] to List<string>. How
    can I do it? Thanks a lot!

    *** Sent via Developersdex http://www.developersdex.com ***
  • Marc Gravell

    #2
    Re: convertion (generics)

    string[] arr = ...
    List<stringlist = new List<string>(ar r);

    Marc

    Comment

    Working...