I have two managed c++ classes . Which is used to communicate with i2C device. I need to use them in c#. i have 2 ".h" files which have source and declaration. Do I need to convert it to c# or if I am creating a DLL from that how can I do that?
code is sth like :
public ref class Class1
{
AnotherClass object = new Anotherclass();
Method1();
method2()
}
public ref class AnotherClass
{
}