Static Libaries in .NET

  • Thread starter Thread starter TGF
  • Start date Start date
If that library contains native code only, you do it in exactly the same way
as for a native application. If it contains managed code then it is not
supported and will not generally work.

Ronald Laeremans
Visual C++ team
 
Ronald Laeremans said:
If that library contains native code only, you do it in exactly the same way
as for a native application.

seems reasonable.
If it contains managed code then it is not
supported and will not generally work.

Ronald Laeremans
Visual C++ team

Exactly how would one create a static library that contains managed code?

bob
 
You cannot create a static library that contains managed code. Or to be more
exact, you can create one, but using it won't work. This is a (undesired)
side effect on how we currently do the mixing of managed and unmanaged code.

Ronald
 

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

Back
Top