mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-10 03:45:41 +00:00
Remove SuppressMessage from ToGetParameters
This commit is contained in:
parent
6bc60d2a3a
commit
01a2df21d4
@ -1,6 +1,5 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Diagnostics.CodeAnalysis;
|
|
||||||
using System.Web;
|
using System.Web;
|
||||||
|
|
||||||
namespace X10D.DictionaryExtensions
|
namespace X10D.DictionaryExtensions
|
||||||
@ -66,8 +65,6 @@ namespace X10D.DictionaryExtensions
|
|||||||
/// <typeparam name="TValue">The value type.</typeparam>
|
/// <typeparam name="TValue">The value type.</typeparam>
|
||||||
/// <param name="value">The source dictionary.</param>
|
/// <param name="value">The source dictionary.</param>
|
||||||
/// <returns>Returns a <see cref="string" /> representing the dictionary as a key=value& set.</returns>
|
/// <returns>Returns a <see cref="string" /> representing the dictionary as a key=value& set.</returns>
|
||||||
[SuppressMessage("ReSharper", "UseDeconstructionOnParameter")]
|
|
||||||
[SuppressMessage("ReSharper", "UseDeconstruction")]
|
|
||||||
public static string ToGetParameters<TKey, TValue>(this IEnumerable<KeyValuePair<TKey, TValue>> value)
|
public static string ToGetParameters<TKey, TValue>(this IEnumerable<KeyValuePair<TKey, TValue>> value)
|
||||||
{
|
{
|
||||||
if (value is null)
|
if (value is null)
|
||||||
|
Loading…
Reference in New Issue
Block a user