Dynamic call C# DLL files?

Just starting out? Need help? Post your questions and find answers here.
j50501313
User
User
Posts: 20
Joined: Fri Oct 23, 2009 11:51 am

Dynamic call C# DLL files?

Post by j50501313 »

Code: Select all

namespace ClassLibrary
{
    [Guid("4BF8F1CE-F33D-48bd-A7C8-C4E8EE7376B1")]

    public interface iClass1
    {

        string A();

    }


    [Guid("39BE150B-7684-4a16-9574-0F6C15BDE407")]

    [ClassInterface(ClassInterfaceType.None)]

    public class Class1 : iClass1
    {

        public string A()
        {

            return "Test";

        }

    }

}
How to call C# DLL files????????
Post Reply