2 writes to _numProps
mscorlib (2)
system\runtime\remoting\dynamicpropertyholder.cs (2)
44
_props[
_numProps
++] = prop;
86
_numProps
--;
12 references to _numProps
mscorlib (12)
system\runtime\remoting\dynamicpropertyholder.cs (12)
34
CheckPropertyNameClash(prop.Name, _props,
_numProps
);
38
if (_props == null ||
_numProps
== _props.Length)
58
for (int i=0; i<
_numProps
; i++)
67
_sinks[
_numProps
-1] =
81
for (int i=0; i<
_numProps
; i++)
85
_props[i] = _props[
_numProps
-1];
109
IDynamicProperty[] retProps = new IDynamicProperty[
_numProps
];
110
Array.Copy(_props, retProps,
_numProps
);
126
if (
_numProps
== 0)
136
_sinks = new IDynamicMessageSink[
_numProps
+GROW_BY];
137
for (int i=0; i<
_numProps
; i++)
144
return new ArrayWithSize(_sinks,
_numProps
);