Files
WireMock.Net/src/WireMock.Net.Shared/Extensions/EnumerableExtensions.cs
Stef Heyenrath 8b27da95a8 Add WebSockets (#1423)
* Add WebSockets

* Add tests

* fix

* more tests

* Add tests

* ...

* remove IOwin

* -

* tests

* fluent

* ok

* match

* .

* byte[]

* x

* func

* func

* byte

* trans

* ...

* frameworks.........

* jmes

* xxx

* sc
2026-02-14 08:42:40 +01:00

21 lines
442 B
C#

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