C# Project reference .lib files

S

sean.j.gage

Is it possible to reference .lib files in a C# project? Or is there
process that can make a .lib file accessible from a C# project?

Cheers!
 
M

Mattias Sjögren

Is it possible to reference .lib files in a C# project?
No


Or is there
process that can make a .lib file accessible from a C# project?

Sure, build it into a DLL, export the functionality you need and
access it via P/Invoke for example.


Mattias
 
S

sean.j.gage

Sure, build it into a DLL, export the functionality you need and
access it via P/Invoke for example.

Mattias

My C++ skills are very lacking. What's the best process for building
the lib into a dll?

Cheers!
 
C

Carl Daniel [VC++ MVP]

My C++ skills are very lacking. What's the best process for building
the lib into a dll?

Find someone who's C++ skills are not lacking to help you in person.
Seriously. There are simply too many possibilities to answer that question
in a newsgroup posting.

-cd
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top