linux-packaging-mono/mcs/tests/test-anon-149.cs
Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

33 lines
538 B
C#

using System;
using System.Collections.Generic;
class Test
{
public 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);
}));
}
}
}