NetworkCommsDotNet.Tools.XPlatformHelper.SocketAddress.this C# (CSharp) 메소드

this() 공개 메소드

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

            set
            {
                data[offset] = value;
            }
        }