using System; using System.Collections.Generic; namespace Boomlagoon.JSON { public static class Extensions { public static T Pop(this List list) { T result = list[list.Count - 1]; list.RemoveAt(list.Count - 1); return result; } } }