P
P
ProblemBook.NET
Search…
P
P
ProblemBook.NET
ProblemBook.NET
LANGS
Задачник.NET
ProblemBook.NET
Oop
Strings
Linq
Multithreading
ValueTypes
“StructLayout” (Problem)
“MutableProperty” (Solution)
“Boxing” (Solution)
“MutableProperty” (Problem)
“Boxing” (Problem)
“Enumerator” (Solution)
“Enumerator” (Problem)
“StructLayout” (Solution)
Math
Summary
Introduction
Attribution-NonCommercial-NoDerivatives 4.0 International
Powered By
GitBook
“Enumerator” (Problem)
What will the following code display?
1
var
x
=
new
2
{
3
Items
=
new
List
<
int
>
{
1
,
2
,
3
}.
GetEnumerator
()
4
};
5
while
(
x
.
Items
.
MoveNext
())
6
Console
.
WriteLine
(
x
.
Items
.
Current
);
Copied!
Solution
Previous
“Enumerator” (Solution)
Next
“StructLayout” (Solution)
Last modified
3yr ago
Copy link