PdbReader.Offset.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            if (this._bits != 0)
            {
                return this._bytes + "." + this._bits;
            }
            else
            {
                return this._bytes + "";
            }
        }