I have an embedded file - xsd.exe - in my .NET library.
How can I, without rebuilding the embedded file from its byte[], use it?
The exe runs on the command line so I need to be able to make calls like: xsd /o:.. or whatever.
I have read something about ManifestResourceStream but I can't seem to find it in the framework and I have no idea how to use it.
Any ideas?