PERWAPI.Assembly.Assembly C# (CSharp) Method

Assembly() private method

private Assembly ( string name, HashAlgorithmType hashAlgId, ushort majVer, ushort minVer, ushort bldNo, ushort revNo, uint flags, byte pKey, string cult, PEFile pefile ) : System
name string
hashAlgId HashAlgorithmType
majVer ushort
minVer ushort
bldNo ushort
revNo ushort
flags uint
pKey byte
cult string
pefile PEFile
return System
        internal Assembly(string name, HashAlgorithmType hashAlgId, ushort majVer,
            ushort minVer, ushort bldNo, ushort revNo, uint flags, byte[] pKey,
            string cult, PEFile pefile )
            : base(name)
        {
            this.hashAlgId = hashAlgId;
            this.majorVer = majVer;
            this.minorVer = minVer;
            this.buildNo = bldNo;
            this.revisionNo = revNo;
            this.flags = flags;
            this.publicKey = pKey;
            this.culture = cult;
            tabIx = MDTable.Assembly;
        }

Same methods

Assembly::Assembly ( string name, PEFile pefile ) : System