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

Symbol() public method

public Symbol ( string name, TargetAddress address, int offset ) : System
name string
address TargetAddress
offset int
return System
        public Symbol(string name, TargetAddress address, int offset)
        {
            this.Name = name;
            this.Address = address;
            this.Offset = offset;
        }