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

◆ IPAddress() [4/7]

System.Net.IPAddress.IPAddress ( ReadOnlySpan< ushort > numbers,
uint scopeid )
inlinepackage

Definition at line 262 of file IPAddress.cs.

263 {
264 ushort[] array = new ushort[8];
265 for (int i = 0; i < array.Length; i++)
266 {
267 array[i] = numbers[i];
268 }
269 _numbers = array;
270 PrivateScopeId = scopeid;
271 }
readonly ushort[] _numbers
Definition IPAddress.cs:49

References System.Net.IPAddress._numbers, System.array, and System.Net.IPAddress.PrivateScopeId.