Without Console.ReadLine()
the console application window will only open
briefly.
using System;
namespace Giraffe
{
public class Project
{
public Project()
{
Console.WriteLine("hey whats up");
}
}
}
Don't forget the ;
With this by adding Console.ReadLine()
at the end of public Project