0

how to use a method inside a com dll into C# ?

2 Answers2

3

Best way to access COM objects from C#

Community
  • 1
  • 1
JP Alioto
  • 44,864
  • 6
  • 88
  • 112
3

Add a reference to the com dll and .net will automatically give a wrapper class and by using that you can call functions inside the dll.

rahul
  • 184,426
  • 49
  • 232
  • 263