您不能選擇超過 %s 個話題 話題必須以字母或數字為開頭,可包含連接號 ('-') 且最長為 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. }