Symbols Question

  • Thread starter Thread starter One Handed Man \( OHM#\)
  • Start date Start date
O

One Handed Man \( OHM#\)

Hi,
I have some source and a dll produced in Visual C++ V6. My
question is this :-

Is it possible to use this in .NET such as C# or VB and also use the symbol
table and source code for debugging.

My gut feeling is it is not possible, but I would like that confirmed and if
possible the reason why.

Hopefully someone out there can help.


Many Thanks
 
One Handed Man ( OHM#) said:
I have some source and a dll produced in Visual C++ V6. My
question is this :-

Is it possible to use this in .NET such as C# or VB ...

Yes. Interoperation between the managed and unmanaged environments is a
large topic. See this for example:

http://msdn.microsoft.com/library/d.../html/cpconconsumingunmanageddllfunctions.asp
and also use the symbol table and source code for debugging.

The IDE's debugger is capable of debugging both managed and unmanaged code.
In fact, you can use it to debug scripts too.

Regards,
Will
 
Thanks for your help. Do you know how I can set this up in VB.NET ?

Regards
 
One Handed Man ( OHM#) said:
Thanks for your help.

You are welcome.
Do you know how I can set this up in VB.NET ?

Nope. I would _guess_ that someone reading

microsoft.public.dotnet.languages.vb

should be able to tell you.

Regards,
Will
 
On the startup project, enable 'Unmanaged code debugging' in the Debugging Configuration Properties.
 
Back
Top