I have been trying to get my manifested resouces from my app directly into an object variable but I cannot find a method to do it.
Bitmap.FromStream() seems to do this. But how can I do this?
Stream s= Assembly.GetCallingAssembly().GetManifestResourceStream(name);
object o= //Get Object from Stream Code Here.
Bitmap.FromStream() seems to do this. But how can I do this?
Stream s= Assembly.GetCallingAssembly().GetManifestResourceStream(name);
object o= //Get Object from Stream Code Here.