Click here to Skip to main content
15,903,012 members
Home / Discussions / C#
   

C#

 
QuestionCan anyone help fix this issue ? c sharp Pin
Member 1405353013-Nov-18 10:53
Member 1405353013-Nov-18 10:53 
AnswerRe: Can anyone help fix this issue ? c sharp Pin
Mycroft Holmes13-Nov-18 11:05
professionalMycroft Holmes13-Nov-18 11:05 
AnswerRe: Can anyone help fix this issue ? c sharp Pin
OriginalGriff13-Nov-18 19:17
mveOriginalGriff13-Nov-18 19:17 
QuestionSeveral lists into one horizontal list Pin
Member 1307682212-Nov-18 22:12
Member 1307682212-Nov-18 22:12 
AnswerRe: Several lists into one horizontal list Pin
OriginalGriff12-Nov-18 23:42
mveOriginalGriff12-Nov-18 23:42 
AnswerRe: Several lists into one horizontal list Pin
BillWoodruff13-Nov-18 2:12
professionalBillWoodruff13-Nov-18 2:12 
GeneralRe: Several lists into one horizontal list Pin
Richard Deeming14-Nov-18 1:09
mveRichard Deeming14-Nov-18 1:09 
AnswerRe: Several lists into one horizontal list Pin
Richard Deeming14-Nov-18 1:18
mveRichard Deeming14-Nov-18 1:18 
Since you've got a fixed number of lists, this should be fairly easy to do with a combination of SelectMany[^] and DefaultIfEmpty[^]:
C#
var result = list1.DefaultIfEmpty().SelectMany(l1 => list2.DefaultIfEmpty().SelectMany(l2 => list3.DefaultIfEmpty().Select(l3 => new { l1, l2, l3 }))).ToList();

It's slightly cleaner using the query syntax:
C#
var query = from l1 in list1.DefaultIfEmpty()
            from l2 in list2.DefaultIfEmpty()
            from l3 in list3.DefaultIfEmpty()
            select new { l1, l2, l3 };

var result = query.ToList();




"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer

QuestionCheck if xy point is within a polygon Console App Pin
Member 1192266611-Nov-18 23:15
Member 1192266611-Nov-18 23:15 
QuestionRe: Check if xy point is within a polygon Console App Pin
Richard MacCutchan11-Nov-18 23:19
mveRichard MacCutchan11-Nov-18 23:19 
AnswerRe: Check if xy point is within a polygon Console App Pin
Member 1192266611-Nov-18 23:35
Member 1192266611-Nov-18 23:35 
GeneralRe: Check if xy point is within a polygon Console App Pin
Richard MacCutchan11-Nov-18 23:43
mveRichard MacCutchan11-Nov-18 23:43 
GeneralRe: Check if xy point is within a polygon Console App Pin
OriginalGriff12-Nov-18 0:27
mveOriginalGriff12-Nov-18 0:27 
AnswerRe: Check if xy point is within a polygon Console App Pin
OriginalGriff11-Nov-18 23:31
mveOriginalGriff11-Nov-18 23:31 
QuestionWifi and LAN usage Pin
Ashfaque Hussain11-Nov-18 20:08
Ashfaque Hussain11-Nov-18 20:08 
AnswerRe: Wifi and LAN usage Pin
OriginalGriff11-Nov-18 21:17
mveOriginalGriff11-Nov-18 21:17 
GeneralRe: Wifi and LAN usage Pin
Ashfaque Hussain11-Nov-18 23:24
Ashfaque Hussain11-Nov-18 23:24 
GeneralRe: Wifi and LAN usage Pin
OriginalGriff11-Nov-18 23:34
mveOriginalGriff11-Nov-18 23:34 
GeneralRe: Wifi and LAN usage Pin
Ashfaque Hussain12-Nov-18 23:01
Ashfaque Hussain12-Nov-18 23:01 
QuestionData Adapter is failing to load bulk data Pin
venky_CodeProject11-Nov-18 17:11
venky_CodeProject11-Nov-18 17:11 
AnswerRe: Data Adapter is failing to load bulk data Pin
Dave Kreskowiak11-Nov-18 17:56
mveDave Kreskowiak11-Nov-18 17:56 
GeneralRe: Data Adapter is failing to load bulk data Pin
venky_CodeProject11-Nov-18 19:26
venky_CodeProject11-Nov-18 19:26 
GeneralRe: Data Adapter is failing to load bulk data Pin
Dave Kreskowiak12-Nov-18 13:47
mveDave Kreskowiak12-Nov-18 13:47 
GeneralRe: Data Adapter is failing to load bulk data Pin
venky_CodeProject13-Nov-18 3:49
venky_CodeProject13-Nov-18 3:49 
GeneralRe: Data Adapter is failing to load bulk data Pin
Dave Kreskowiak21-Nov-18 11:15
mveDave Kreskowiak21-Nov-18 11:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.