Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- using System;
- using System.Collections.Generic;
-
- namespace Boomlagoon.JSON
- {
- public static class Extensions
- {
- public static T Pop<T>(this List<T> list)
- {
- T result = list[list.Count - 1];
- list.RemoveAt(list.Count - 1);
- return result;
- }
- }
- }
|