How to create an interface in C#? - Biz Tech

How to create an interface in C#?

Listen
public interface IMyInterface
{
    void Method1();
    int Method2(string parameter);
}