mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-27 03:21:04 +01:00
* Add TIOBE + include SonarAnalyzer.CSharp * . * cp * Copyright © WireMock.Net * more fixes * fix * xpath * if (Matchers == null || !Matchers.Any()) * if (Matchers != null) * ? * . * .
13 lines
269 B
C#
13 lines
269 B
C#
// Copyright © WireMock.Net
|
|
|
|
// ReSharper disable once CheckNamespace
|
|
namespace System;
|
|
|
|
internal static class EmptyArray<T>
|
|
{
|
|
#if NET451 || NET452
|
|
public static readonly T[] Value = new T[0];
|
|
#else
|
|
public static readonly T[] Value = Array.Empty<T>();
|
|
#endif
|
|
} |