public static void Main()
ISomeInterface instance = new DemoStruct();
public interface ISomeInterface
public struct DemoStruct : ISomeInterface
public void DoSomeStuff(){
Console.WriteLine("Do some stuff ...");
public void DoSomeOtherStuff()
Console.WriteLine("Do some other stuff ...");