Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- 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;
- }
- }
- }
|