1 write to address
System (1)
net\System\Net\NetworkInformation\PhysicalAddress.cs (1)
20
this.
address
= address;
17 references to address
System (17)
net\System\Net\NetworkInformation\PhysicalAddress.cs (17)
29
int size =
address
.Length & ~3;
32
hash ^= (int)
address
[i]
33
| ((int)
address
[i+1] << 8)
34
| ((int)
address
[i+2] << 16)
35
| ((int)
address
[i+3] << 24);
37
if ((
address
.Length & 3) != 0) {
42
for (; i <
address
.Length; ++i) {
43
remnant |= ((int)
address
[i]) << shift;
57
if (this.
address
.Length != address.
address
.Length) {
60
for (int i = 0; i < address.
address
.Length; i++) {
61
if(this.
address
[i] != address.
address
[i])
71
foreach (byte value in
address
) {
89
byte[] tmp = new byte[
address
.Length];
90
Buffer.BlockCopy(
address
,0,tmp,0,
address
.Length);