// Copyright © WireMock.Net namespace System.Collections.Generic; internal static class EnumerableExtensions { //internal static IEnumerable ReverseEx(this IEnumerable source) //{ // var stack = new Stack(); // foreach (var item in source) // { // stack.Push(item); // } // while (stack.Count > 0) // { // yield return stack.Pop(); // } //} }