Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gtest-anon-49.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 52855ef11e7e8d9c317c5085bdde03c778c5986a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using System;
using System.Collections.Generic;

class Test
{
	static void Main ()
	{

	}

	private void DetermineLinkedCells ()
	{
		List<object> objectList1 = null;
		List<object> objectList2 = null;

		{
			object object1 = null;
			{
				objectList2.FindAll (new Predicate<object> (
						delegate (object objectarg1) {
							return objectarg1.Equals (objectList1);
						}));

			}

			objectList2.FindAll (new Predicate<object> (
				delegate (object objectarg2) {
					return objectarg2.Equals (object1);
				}));
		}
	}
}