vote up 1 vote down star

I have a file that I have embedded as a resource in a managed C# assembly. I would like to pass the pointer to that resource and its size to some native code so it can extract it for me if needed. Are there C# api's that give me the intptr of that embedded resource?

flag

2 Answers

vote up 0 vote down

Have you heard of C++ / CLI ? It's a language you can use to easily go back and forth between C# and C++. You might want to give it a try.

link|flag
vote up 0 vote down

Not without first loading the resource data. Perhaps an unmanaged resource would be more appropriate in this case?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.