public static void Main()
Console.WriteLine(new Test("Ivan").SayHello());
string text { get; set; }
public static class ITestExtensions
public static string SayHello(this ITest test)
return test.text + " HELLO CHUJU";
public string text { get; set; }
public Test (string text)