2 writes to _argList
System.Private.Xml (2)
System\Xml\Serialization\CodeGenerator.cs (2)
94
_argList
= new Dictionary<string, ArgBuilder>();
118
_argList
= null;
8 references to _argList
System.Private.Xml (8)
System\Xml\Serialization\CodeGenerator.cs (8)
97
_argList
.Add("this", new ArgBuilder("this", 0, _typeBuilder.BaseType!));
100
ArgBuilder arg = new ArgBuilder(argNames[i],
_argList
.Count, argTypes[i]);
101
_argList
.Add(arg.Name, arg);
131
System.Diagnostics.Debug.Assert(
_argList
!= null &&
_argList
.ContainsKey(name));
132
return (ArgBuilder)
_argList
[name];
189
if (
_argList
!= null &&
_argList
.TryGetValue(name, out arg))