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