選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

16 行
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. }