2 using System
.Collections
.Generic
;
11 private void DetermineLinkedCells ()
13 List
<object> objectList1
= null;
14 List
<object> objectList2
= null;
17 object object1
= null;
19 objectList2
.FindAll (new Predicate
<object> (
20 delegate (object objectarg1
) {
21 return objectarg1
.Equals (objectList1
);
26 objectList2
.FindAll (new Predicate
<object> (
27 delegate (object objectarg2
) {
28 return objectarg2
.Equals (object1
);