SWFProcessing.SWFModeller.SWFReader.MarkDumpOffset C# (CSharp) Method

MarkDumpOffset() private method

private MarkDumpOffset ( string comment, bool makeGap = false ) : void
comment string
makeGap bool
return void
        private void MarkDumpOffset(string comment, bool makeGap = false)
        {
            #if DEBUG
            if (this.binaryDump != null)
            {
                if (makeGap)
                {
                    this.binaryDump.AppendLine();
                }
                this.binaryDump.AppendLine((new string('\t', Math.Max(0, this.binaryDumpNest))) + comment);
            }
            #endif
        }