I am aiming to become a Fullstack Developer. I have a solid foundation in C#, .NET, and ASP.NET Core, and I am currently expanding my skill set by learning HTML and CSS. While I don’t have commercial experience yet, I am highly motivated to learn, eager to grow professionally, and quick to pick up new technologies and development practices.
using System;
class Program
{
static void Main()
{
int[] numbers = { 10, 20, 30, 40, 50 };
foreach (int number in numbers)
{
Console.WriteLine(number);
}
}
}