mirror of
https://github.com/github/codeql.git
synced 2025-12-22 03:36:30 +01:00
14 lines
259 B
C#
14 lines
259 B
C#
class MissedSelectOpportunity
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
List<int> lst = Enumerable.Range(1, 5).ToList();
|
|
|
|
foreach (int i in lst)
|
|
{
|
|
int j = i * i;
|
|
Console.WriteLine(j);
|
|
}
|
|
}
|
|
}
|