cleol
[mcs.git] / tests / gtest-anon-49.cs
blob52855ef11e7e8d9c317c5085bdde03c778c5986a
1 using System;
2 using System.Collections.Generic;
4 class Test
6 static void Main ()
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);
22 }));
26 objectList2.FindAll (new Predicate<object> (
27 delegate (object objectarg2) {
28 return objectarg2.Equals (object1);
29 }));