Skip to content

Add C# console app that prints numbers 1-10#1

Open
Copilot wants to merge 2 commits intomainfrom
copilot/create-csharp-console-app
Open

Add C# console app that prints numbers 1-10#1
Copilot wants to merge 2 commits intomainfrom
copilot/create-csharp-console-app

Conversation

Copy link

Copilot AI commented Feb 25, 2026

New .NET 10 console app (NumberPrinter) that writes numbers 1–10 to stdout.

  • NumberPrinter/Program.csfor loop printing 1–10 via Console.WriteLine
  • NumberPrinter/NumberPrinter.csproj — Standard .NET 10 console app target
  • .gitignore — Excludes bin/, obj/, and IDE artifacts
for (int i = 1; i <= 10; i++)
{
    Console.WriteLine(i);
}

🔒 GitHub Advanced Security automatically protects Copilot coding agent pull requests. You can protect all pull requests by enabling Advanced Security for your repositories. Learn more about Advanced Security.

Co-authored-by: mickeygousset <20031479+mickeygousset@users.noreply.github.com>
@mickeygousset mickeygousset marked this pull request as ready for review February 25, 2026 22:36
Copilot AI changed the title [WIP] Create C# console app to output numbers 1-10 Add C# console app that prints numbers 1-10 Feb 25, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants