mydll.dll
namespace mydll
{
public class MyClass {
public static int Add(int x, int y)
{
return x +y;
}
}
}
Dans un autre projet, comment puis-je importer MyClass ou simplement Add function ?
Je souhaite ajouter avec DllImport ,
[DllImport("mydll.dll", CharSet = CharSet.Auto) ] public static extern .......
comment faire ?