Mono.Cecil.Pdb.PdbWriter.GetDebugHeader C# (CSharp) Method

GetDebugHeader() public method

public GetDebugHeader ( ImageDebugDirectory &directory, byte &header ) : bool
directory ImageDebugDirectory
header byte
return bool
        public bool GetDebugHeader(out ImageDebugDirectory directory, out byte [] header)
        {
            header = writer.GetDebugInfo (out directory);
            return true;
        }