Click here to Skip to main content
15,912,756 members
Home / Discussions / C#
   

C#

 
GeneralRe: subtract list first element with second one,third with secon one an so on Pin
Pete O'Hanlon11-Nov-13 0:21
mvePete O'Hanlon11-Nov-13 0:21 
GeneralRe: subtract list first element with second one,third with secon one an so on Pin
Richard MacCutchan11-Nov-13 3:37
mveRichard MacCutchan11-Nov-13 3:37 
GeneralRe: subtract list first element with second one,third with secon one an so on Pin
OriginalGriff10-Nov-13 23:35
mveOriginalGriff10-Nov-13 23:35 
QuestionImport Dll in the Application Pin
Member 913191910-Nov-13 20:23
Member 913191910-Nov-13 20:23 
AnswerRe: Import Dll in the Application Pin
Abhinav S10-Nov-13 20:40
Abhinav S10-Nov-13 20:40 
AnswerRe: Import Dll in the Application Pin
Alan Balkany14-Nov-13 4:49
Alan Balkany14-Nov-13 4:49 
Questioninstaller for window form application c# 4.0,2010 Pin
Member 1026351910-Nov-13 19:58
Member 1026351910-Nov-13 19:58 
AnswerRe: installer for window form application c# 4.0,2010 Pin
thatraja10-Nov-13 20:07
professionalthatraja10-Nov-13 20:07 
AnswerRe: installer for window form application c# 4.0,2010 Pin
Abhinav S10-Nov-13 21:12
Abhinav S10-Nov-13 21:12 
GeneralRe: installer for window form application c# 4.0,2010 Pin
Member 1026351913-Nov-13 0:51
Member 1026351913-Nov-13 0:51 
QuestionPLEASE HELP ME CONVERT C++ TO PYTHON Pin
ege yay10-Nov-13 7:58
ege yay10-Nov-13 7:58 
AnswerRe: PLEASE HELP ME CONVERT C++ TO PYTHON Pin
Dave Kreskowiak10-Nov-13 10:32
mveDave Kreskowiak10-Nov-13 10:32 
GeneralRe: PLEASE HELP ME CONVERT C++ TO PYTHON Pin
BlackHat Umbrella10-Nov-13 19:24
professionalBlackHat Umbrella10-Nov-13 19:24 
AnswerRe: PLEASE HELP ME CONVERT C++ TO PYTHON Pin
Pete O'Hanlon10-Nov-13 10:38
mvePete O'Hanlon10-Nov-13 10:38 
AnswerRe: PLEASE HELP ME CONVERT C++ TO PYTHON Pin
Abhinav S10-Nov-13 16:59
Abhinav S10-Nov-13 16:59 
AnswerRe: PLEASE HELP ME CONVERT C++ TO PYTHON Pin
thatraja10-Nov-13 20:00
professionalthatraja10-Nov-13 20:00 
Questionfind total year without intersection in c# Pin
Member 1038120910-Nov-13 4:11
Member 1038120910-Nov-13 4:11 
AnswerRe: find total year without intersection in c# Pin
Dave Kreskowiak10-Nov-13 10:33
mveDave Kreskowiak10-Nov-13 10:33 
Questionc# Pin
Member 1038120910-Nov-13 0:49
Member 1038120910-Nov-13 0:49 
int[] id1 = { 44, 26, 92, 30, 71, 38 };
int[] id2 = { 39, 59, 83, 47, 26, 4, 30 };

IEnumerable<int> both = id1.Intersect(id2);

foreach (int id in both)
Console.WriteLine(id);

/*
This code produces the following output:

26
30
*/


but how to compare with their index ,i mean i should compare id1[index0] with id2[index0] and each index if there will be intersection show result and of course result will be 0 because there not intersection with their index
AnswerRe: c# Pin
Abhinav S10-Nov-13 1:39
Abhinav S10-Nov-13 1:39 
GeneralRe: c# Pin
Member 1038120910-Nov-13 1:51
Member 1038120910-Nov-13 1:51 
AnswerRe: c# Pin
Abhinav S10-Nov-13 1:58
Abhinav S10-Nov-13 1:58 
AnswerRe: c# Pin
BillWoodruff10-Nov-13 2:37
professionalBillWoodruff10-Nov-13 2:37 
AnswerRe: c# Pin
Richard Deeming11-Nov-13 1:33
mveRichard Deeming11-Nov-13 1:33 
QuestionSave displayed text from Web Page in C# Pin
triXerr9-Nov-13 23:27
triXerr9-Nov-13 23:27 

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.