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

◆ this[int offset]

byte System.Net.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 set
35 {
36 if (offset < 0 || offset >= Size)
37 {
38 throw new IndexOutOfRangeException();
39 }
40 if (Buffer[offset] != value)
41 {
42 _changed = true;
43 }
45 }
46 }