-1
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Wellsoft{
    class Program
    {
        static void Main(string[] args)
        {
            Console.ForegroundColor = ConsoleColor.Cyan;
            Console.WriteLine("Software for Wellsoft Games");
            //Valores Inteiros (int)
            int num_1 = 936;
            int num_2 = 5298;
            int num_3 = 323;
            Console.ForegroundColor = ConsoleColor.Magenta;
            Console.WriteLine("Existe " + num_1 + " onlines em nosso site, " + num_2 + " acesso por dia, é " + num_3 + " membros na equipe.");
            Console.ForegroundColor = ConsoleColor.White;
        }
    }
}
Note: This code has no elements to add the image, I just put to better understand.
Do you want to add an image to a console application? How do you expect it to work? Do you understand what a console is?
– Maniero
Not yet, because I’m new to C#, I started 3 days ago, barely know the tool Visual Studio.
– Gabriel Ferreira