public interface ITestInterface
public bool TestMe() => false;
public struct teststruct : ITestInterface
public bool TestMe() => true;
public bool TestMe2() => true;
public static void Main()
var ts = new teststruct();
Console.WriteLine((ts as ITestInterface).TestMe());
Console.WriteLine(ts.TestMe());