您最多选择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. }