mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-15 14:53:37 +01:00
22 lines
504 B
C#
22 lines
504 B
C#
#if NET46 || NETSTANDARD2_0
|
|
using System.Collections.Generic;
|
|
|
|
namespace WireMock.Net.OpenApiParser.Extensions
|
|
{
|
|
internal static class DictionaryExtensions
|
|
{
|
|
public static bool TryAdd<TKey, TValue>(this Dictionary<TKey, TValue> dictionary, TKey key, TValue value)
|
|
{
|
|
if (dictionary is null || dictionary.ContainsKey(key))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
dictionary[key] = value;
|
|
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
#endif
|