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
 
Back
Top