You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 regels
272 B

  1. using System;
  2. using System.Collections.Generic;
  3. namespace Boomlagoon.JSON
  4. {
  5. public static class Extensions
  6. {
  7. public static T Pop<T>(this List<T> list)
  8. {
  9. T result = list[list.Count - 1];
  10. list.RemoveAt(list.Count - 1);
  11. return result;
  12. }
  13. }
  14. }