What's wrong with my code? Why can't I output the "hahahaha" string from public constructor1?? help me please.
using System;
namespace hahahahahahahahaha
{
class Program
{
public static void Main(string[] args)
{
constructor1 obj = new constructor1();
}
}
public class constructor1
{
public constructor1();
{
Console.WriteLine("hahahaha");
}
}
}