Browse by Tags
Sorry, but there are no more tags available to filter with.
-
-
Yes, you can get embedded resources from an assembly, and load it in your software. Here is an example. Stream st = Assembly.GetExecutingAssembly().GetManifestResourceStream("assemby.filename.ext"); StreamReader sr = new StreamReader(st); string...