2 writes to _keys
System.Linq.Expressions (2)
System\Dynamic\ExpandoClass.cs (2)
30
_keys
= Array.Empty<string>();
41
_keys
= keys;
11 references to _keys
System.Linq.Expressions (11)
System\Dynamic\ExpandoClass.cs (11)
68
if (string.Equals(klass.
_keys
[klass.
_keys
.Length - 1], newKey, StringComparison.Ordinal))
76
string[] keys = new string[
_keys
.Length + 1];
77
Array.Copy(
_keys
, keys,
_keys
.Length);
78
keys[
_keys
.Length] = newKey;
123
for (int i = 0; i <
_keys
.Length; i++)
126
_keys
[i],
153
for (int i =
_keys
.Length - 1; i >= 0; i--)
156
_keys
[i],
184
internal string[] Keys =>
_keys
;