1
Reply

List add value

Ask a question
I want add the List value with the help of array of list.

string []s={"af","adsf"};

  List<string> st = new List<string>();
 
  st.Add(s.Select(aa=>aa).First().ToString()); //how can do this

I want no more Loop.
 

Answers (1)