PERWAPI.PEFile.AddManagedResource C# (CSharp) Метод

AddManagedResource() публичный Метод

Add a managed resource to this PEFile. The resource will be embedded in this PE file.
public AddManagedResource ( string resName, byte resBytes, bool isPublic ) : void
resName string The name of the managed resource
resBytes byte The managed resource
isPublic bool Access for the resource
Результат void
        public void AddManagedResource(string resName, byte [] resBytes, bool isPublic)
        {
            resources.Add(new ManifestResource(this, resName, resBytes, isPublic));
        }