NetworkCommsDotNet.Tools.XPlatformHelper.SocketAddress.this C# (CSharp) Method

this() public method

public this ( int offset ) : byte
offset int
return byte
        public byte this[int offset]
        {
            get
            {
                return (data[offset]);
            }

            set
            {
                data[offset] = value;
            }
        }