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