Joginder Banger

Joginder Banger

  • 213
  • 8.7k
  • 1m

List add value

Dec 6 2014 4:01 AM
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)