回答編集履歴

1

typo

2019/03/28 06:34

投稿

ozwk
ozwk

スコア13528

test CHANGED
@@ -1,5 +1,5 @@
1
1
  ```C#
2
2
 
3
- var samplelist3 = samplelist1.zip(samplelist2, (x,y)=> new {candidateid = x.candidateid, /*中略*/ , interviewedCount =y.interviewedCount}).ToList();
3
+ var samplelist3 = samplelist1.Zip(samplelist2, (x,y)=> new {candidateid = x.candidateid, /*中略*/ , interviewedCount =y.interviewedCount}).ToList();
4
4
 
5
5
  ```