2 writes to list
System.Workflow.ComponentModel (2)
AuthoringOM\Serializer\ListSurrogate.cs (2)
57this.list = listType.GetConstructor(Type.EmptyTypes).Invoke(null); 78this.list = null;
6 references to list
System.Workflow.ComponentModel (6)
AuthoringOM\Serializer\ListSurrogate.cs (6)
54if (this.list == null) 59return this.list; 63if (this.list != null) 65MethodInfo addMethod = this.list.GetType().GetMethod("Add"); 72addMethod.Invoke(this.list, new object[] { this.items[n] }); 76addMethod.Invoke(this.list, new object[] { this.item });