Guest User

TestLib

a guest
Jun 11th, 2011
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace TestLib
  7. {
  8. public static class MySharp
  9. {
  10. public static IEnumerable<int[]> test_fun(IDictionary<int, IEnumerable<int>> inter)
  11. {
  12. var res = new List<int[]>();
  13. foreach (var seq in inter) res.Add(seq.Value.ToArray());
  14. return res;
  15. }
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment