Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ this[int offset]

byte System.Net.Internals.SocketAddress.this[int offset]
getset

Definition at line 24 of file SocketAddress.cs.

25 {
26 get
27 {
28 if (offset < 0 || offset >= Size)
29 {
30 throw new IndexOutOfRangeException();
31 }
32 return Buffer[offset];
33 }
34 }