Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace TestLib
- {
- public static class MySharp
- {
- public static IEnumerable<int[]> test_fun(IDictionary<int, IEnumerable<int>> inter)
- {
- var res = new List<int[]>();
- foreach (var seq in inter) res.Add(seq.Value.ToArray());
- return res;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment