S
S Wheeler
This may have been previously addressed, if so sorry...
I am trying to create a serialization library that will be used from
unmanaged vc++. I have working vc++ managed code that serializes and
de-serializes objects to/from XML. But, I want to use this from an unmanaged
vc app that I am writing. Several questions: is it possible to create
managed static library that can then be linked to my unmanaged app at build
time; or must I use a dll if I want a library. I understand that if I create
a .net class library that is a dll and will then require COM to use from my
unmanaged app ??
Or, would it be better to try and co-mingle the unmanaged and managed code ?
I want to try to keep the boundaries between managed and unmanaged as
distinct as possible; the core of my app needs to be somewhat portable and I
am really just looking for an easy way to do object serializations which
seems to be .net framework serialization, but if using this makes the core
of my app non-portable then that is not too good..
Thanks for your advice...
I am trying to create a serialization library that will be used from
unmanaged vc++. I have working vc++ managed code that serializes and
de-serializes objects to/from XML. But, I want to use this from an unmanaged
vc app that I am writing. Several questions: is it possible to create
managed static library that can then be linked to my unmanaged app at build
time; or must I use a dll if I want a library. I understand that if I create
a .net class library that is a dll and will then require COM to use from my
unmanaged app ??
Or, would it be better to try and co-mingle the unmanaged and managed code ?
I want to try to keep the boundaries between managed and unmanaged as
distinct as possible; the core of my app needs to be somewhat portable and I
am really just looking for an easy way to do object serializations which
seems to be .net framework serialization, but if using this makes the core
of my app non-portable then that is not too good..
Thanks for your advice...