nima1985 Posted July 7, 2005 Posted July 7, 2005 Hi, I wanted to create multithreads in c++ and use it in VB.NET, so I was thinking that I can wrap the c++ code and use it in VB.NET (like any other dll). I have a function (functionexample()) in c++ that creates another thread (which is linked to another function, interrupt()). So I wanted to expose functionexample() in vb.net. Is all this possible ? :confused: Quote
Diesel Posted July 8, 2005 Posted July 8, 2005 Sure, if you are inheriting the class, make sure the method has at least a protected modifier, or is public if you are just creating an object of the class in vb. Quote
nima1985 Posted July 8, 2005 Author Posted July 8, 2005 thanks for the reply. just making sure its "do-able" before I spend time writing up the code. :D Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.