2 writes to argList
System.Xml (2)
System\Xml\Serialization\CodeGenerator.cs (2)
100
this.
argList
= new Dictionary<string, ArgBuilder>();
122
argList
= null;
8 references to argList
System.Xml (8)
System\Xml\Serialization\CodeGenerator.cs (8)
103
argList
.Add("this", new ArgBuilder("this", 0, this.typeBuilder.BaseType));
105
ArgBuilder arg = new ArgBuilder(argNames[i],
argList
.Count, argTypes[i]);
106
argList
.Add(arg.Name, arg);
138
System.Diagnostics.Debug.Assert(
argList
!= null &&
argList
.ContainsKey(name));
139
return (ArgBuilder)
argList
[name];
194
if (
argList
!= null &&
argList
.TryGetValue(name, out arg)) {