Girl.PEAnalyzer.PEData.SetData C# (CSharp) Method

SetData() public method

public SetData ( byte data ) : void
data byte
return void
        public void SetData(byte[] data)
        {
            this.Init();
            this.data = data;
            this.ReadPEHeaders();
            this.ReadCLIHeader();
            if (this.tilde == null || this.sharpTilde == null) return;
            this.idxm.MakeTree(this);
        }