4 writes to nullCount
mscorlib (4)
system\runtime\serialization\formatters\binary\binarycommonclasses.cs (4)
1940this.nullCount = nullCount; 1976nullCount = 1; 1979nullCount = input.ReadByte(); 1983nullCount = input.ReadInt32();
10 references to nullCount
mscorlib (10)
system\runtime\serialization\formatters\binary\binarycommonclasses.cs (8)
1945if (nullCount == 1) 1949else if (nullCount < 256) 1952sout.WriteByte((Byte)nullCount); 1958sout.WriteInt32(nullCount); 2000if (nullCount == 1) 2004else if (nullCount < 256) 2007BinaryUtil.NVTraceI("nullCount (Byte)", nullCount); 2012BinaryUtil.NVTraceI("nullCount (Int32)", nullCount);
system\runtime\serialization\formatters\binary\binaryparser.cs (2)
1145prs.PRnullCount = objectNull.nullCount; 1148objectOp.ArrayCountIncrement(objectNull.nullCount-1);