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

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

Add a manifest resource to this PEFile
public AddUnmanagedResources ( string resFilename ) : void
resFilename string
Результат void
        public void AddUnmanagedResources(string resFilename)
        {
            if (!System.IO.File.Exists(resFilename))
                throw (new FileNotFoundException("Unmanaged Resource File Not Found", resFilename));
            unmanagedResources = System.IO.File.OpenRead(resFilename);
            throw new NotYetImplementedException("Unmanaged Resources are not yet implemented");
        }