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