Alberth Flores

I'm Programmer for C# & .Net Core. I've made quite a few web apps, especially on ASP .NET CORE.

Hola a todos desde mi primer post.

21 Jan 2020 » c#, .Net core

Program.cs

using System;

namespace HolaMundo
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
            Console.ReadLine();
        }
    }
}