TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Phill Dutton
NA
1
0
Using C# DLL in VC++
May 4 2006 4:14 AM
Hi all, I'm trying to use a C# DLL in VC++ 6 using COM. I've made a simple class (listed below), and used tlbexp and regasm to generate a type library and register the component and now I'm trying to work out how to access it in VC++. public interface Itest { int testAdd(int a); } [ClassInterface(ClassInterfaceType.None)] public class MyClass : Itest { public MyClass() { } public int testAdd(int a) { return (1 + a); } } Any pointers would be appreciated, I'm a bit stumped!
Reply
Answers (
0
)
ActiveX control
Visual C++ 3D