-
C# creates a com wrapper around an api i need to use, so i am unable to access any method or Is there a way to interop with this api? |
Beta Was this translation helpful? Give feedback.
Answered by
lahma
Jan 30, 2023
Replies: 1 comment 4 replies
-
You probably need to define you own type inheriting from |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
faljse
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You probably need to define you own type inheriting from
ObjectInstance
and add methods and properties you need, them calling your CLR methods that handle the invoke.