Advertisement
Guest User

Untitled

a guest
Feb 2nd, 2015
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. public IEnumerable<int[]> getMultipleRows(List<int[]> val)
  2.         {
  3.             foreach (int[] v in val)
  4.             {
  5.                 foreach (int n in v)
  6.                 {
  7.                     yield return new[] { n };
  8.                 }
  9.             }
  10.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement