Advertisement
Guest User

Untitled

a guest
Jun 30th, 2015
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. IEnumerable<Comment>[][] moderatedComments;
  2. /**
  3. * First dimension [] = The repository from where I fetched the comments (Could be more than one repository)
  4. * Second dimension [][] = The moderation operation (There can only be two operations, so this dimension is always of size 2)
  5. * Third dimension IEnumerable<Comment> = The moderated comments for that dimension
  6. */
  7.  
  8. Comment comment = moderatedComments[1][0].First();
  9. // Repository 1
  10. // Moderation operation 0
  11. // First moderated comment for that repository and operation
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement