回答編集履歴
1
typo
answer
CHANGED
@@ -1,3 +1,3 @@
|
|
1
1
|
```C#
|
2
|
-
var samplelist3 = samplelist1.
|
2
|
+
var samplelist3 = samplelist1.Zip(samplelist2, (x,y)=> new {candidateid = x.candidateid, /*中略*/ , interviewedCount =y.interviewedCount}).ToList();
|
3
3
|
```
|