1 write to _byteArrayValue
UnitTests.Common (1)
TestTypes.cs (1)
519
set {
_byteArrayValue
= value; }
8 references to _byteArrayValue
UnitTests.Common (8)
TestTypes.cs (8)
518
get { return
_byteArrayValue
; }
585
if (
_byteArrayValue
.Length != other.
_byteArrayValue
.Length) { return false; }
586
for (int i = 0; i <
_byteArrayValue
.Length; i++)
588
if (
_byteArrayValue
[i] != other.
_byteArrayValue
[i]) { return false; }
622
sb.AppendLine("ByteArrayValue: " + (
_byteArrayValue
!= null ? "Length: " +
_byteArrayValue
.Length : "null"));