Mono.Debugger.Block.Block C# (CSharp) 메소드

Block() 보호된 메소드

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