for (int i = 1; i <= 10; i++) { Console.WriteLine(i); }In this example, the loop starts at 1 and continues until it reaches 10. The variable `i` is incremented by 1 on each iteration of the loop. This will output the numbers 1 through 10 to the console. The C# Literal For loop is part of the Microsoft .NET Framework and is included in the System package library.