Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

16 řádky
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. }