Table of Contents
Extensions for Assemblies
public static class AssemblyExt
Inheritance System.Object AssemblyExt
Gets the bytes for an embedded resource with the given name (found with endsWith), or null if no matches
public static System.IO.Stream GetEmbeddedResource(this System.Reflection.Assembly assembly, string endsWith);
assembly
System.Reflection.Assembly
endsWith
System.String
Gets the bytes for an embedded resource with the given name (found with endsWith), or null if no matches
public static bool TryGetEmbeddedResource(this System.Reflection.Assembly assembly, string endsWith, out System.IO.Stream stream);
assembly
System.Reflection.Assembly
endsWith
System.String
stream
System.IO.Stream