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