I want to use the API presented in this page however I’ve done this before. What is the equivalent of something like the code below in C#?
var vc = new ActiveXObject("NetLimiter.VirtualClient");
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
But then in order to use it, unless you use the C# 4.0 dynamic keyword, a reflection inferno is awaiting you.
If you want to generate a strongly typed COM wrapper you could use the “Add Reference” dialog and select the COM object from the COM tab. Then you can consume this ActiveX object as any standard .NET type – in a strongly typed manner.