PageRenderTime 39ms CodeModel.GetById 12ms RepoModel.GetById 0ms app.codeStats 1ms

/mcs/tests/test-anon-149.cs

https://bitbucket.org/danipen/mono
C# | 32 lines | 26 code | 6 blank | 0 comment | 0 complexity | 12104bc8bbf1289dca7d35b26d65d579 MD5 | raw file
Possible License(s): Unlicense, Apache-2.0, LGPL-2.0, MPL-2.0-no-copyleft-exception, CC-BY-SA-3.0, GPL-2.0
  1. using System;
  2. using System.Collections.Generic;
  3. class Test
  4. {
  5. public static void Main ()
  6. {
  7. }
  8. private void DetermineLinkedCells ()
  9. {
  10. List<object> objectList1 = null;
  11. List<object> objectList2 = null;
  12. {
  13. object object1 = null;
  14. {
  15. objectList2.FindAll (new Predicate<object> (
  16. delegate (object objectarg1) {
  17. return objectarg1.Equals (objectList1);
  18. }));
  19. }
  20. objectList2.FindAll (new Predicate<object> (
  21. delegate (object objectarg2) {
  22. return objectarg2.Equals (object1);
  23. }));
  24. }
  25. }
  26. }