2 writes to bytes
System.Data.Linq (2)
Types.cs (2)
771this.bytes = new byte[0]; 774this.bytes = new byte[value.Length];
13 references to bytes
System.Data.Linq (13)
Types.cs (13)
775Array.Copy(value, this.bytes, value.Length); 781byte[] copy = new byte[this.bytes.Length]; 782Array.Copy(this.bytes, copy, copy.Length); 787get { return this.bytes.Length; } 835sb.Append(System.Convert.ToBase64String(this.bytes, 0, this.bytes.Length)); 845if (this.bytes.Length != binary.bytes.Length) 849for (int i = 0, n = this.bytes.Length; i < n; i++) { 850if (this.bytes[i] != binary.bytes[i]) 863for (int i = 0; i < bytes.Length; i++) { 864hashCode = hashCode * s + bytes[i];