mirror of
https://github.com/github/codeql.git
synced 2026-01-07 19:50:22 +01:00
22 lines
460 B
C#
22 lines
460 B
C#
class BadMultipleIterationFix
|
|
{
|
|
private static int count = 1;
|
|
private static IEnumerable<int> NonRepeatable()
|
|
{
|
|
for (; count <= 3; count++)
|
|
{
|
|
yield return count;
|
|
}
|
|
}
|
|
|
|
public static void Main(string[] args)
|
|
{
|
|
IList<int> nr = NonRepeatable().ToList<int>();
|
|
foreach (int i in nr)
|
|
Console.WriteLine(i);
|
|
|
|
foreach (int i in nr)
|
|
Console.WriteLine(i);
|
|
}
|
|
}
|