here's my C# dll:


public interface IMessage
{
void Testing();
}

public class MyTest : IMessage
{