7
Reply

How to combine two IEnumerable list?

shosho s

shosho s

Oct 3 2016 9:17 AM
518
 
I have two list :
public IEnumerable<int> A{ get; set; } 
public IEnumerable<int> B{ get; set; }  
 
 i want C to be a combination of both A and B.
  public IEnumerable<int> C{ get; set; }
 
 
how can this be done? thank you in advance :) 

Answers (7)