Mono.Debugger.Block.Block C# (CSharp) Method

Block() protected method

protected Block ( Type type, int index, int start, int end ) : System
type System.Type
index int
start int
end int
return System
        protected Block(Type type, int index, int start, int end)
        {
            this.BlockType = type;
            this.Index = index;
            this.StartAddress = start;
            this.EndAddress = end;
        }