CSharpRTMP.Common.BigIntegerShell.this C# (CSharp) Method

this() public method

public this ( int pos ) : uint
pos int
return uint
        public uint this[int pos]
        {
            get { return _data[Offset + pos]; }
            set { _data[Offset + pos] = value; }
        }