This class represents a resource
from an assembly manifest. As assemblies can
span multiple files, this resource represents one file from an
assembly. The FileName returns the name of the
file containing the resource if it is not the same as the file
containing the manifest. ResourceLocation allows
you to inspect the ResourceLocation enumeration
for this resource, telling you whether the resource is contained in
the same file as the manifest. ReferencedAssembly
returns the Assembly object representing the
specified assembly.
public class ManifestResourceInfo {
// Public Instance Properties
public virtual string FileName{get; }
public virtual Assembly ReferencedAssembly{get; }
public virtual ResourceLocation ResourceLocation{get; }
}