mirror of
https://github.com/github/codeql.git
synced 2025-12-22 03:36:30 +01:00
23 lines
450 B
C#
23 lines
450 B
C#
class BadMultipleIteration
|
|
{
|
|
private static int count = 1;
|
|
|
|
private static IEnumerable<int> NonRepeatable()
|
|
{
|
|
for (; count <= 3; count++)
|
|
{
|
|
yield return count;
|
|
}
|
|
}
|
|
|
|
public static void Main(string[] args)
|
|
{
|
|
IEnumerable<int> nr = NonRepeatable();
|
|
foreach (int i in nr)
|
|
Console.WriteLine(i);
|
|
|
|
foreach (int i in nr)
|
|
Console.WriteLine(i);
|
|
}
|
|
}
|