From e1a7abc1a61d3a9c934dd8b6489d0023bc08893e Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Tue, 17 Aug 2021 16:27:42 +0100 Subject: [PATCH] Fix inconsistent naming. --- Marshal.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Marshal.cs b/Marshal.cs index db2739589..5985b9192 100644 --- a/Marshal.cs +++ b/Marshal.cs @@ -31,6 +31,7 @@ // ****************************************************************************/ using System; +using System.Diagnostics.CodeAnalysis; using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; @@ -266,6 +267,7 @@ namespace Aaru.Helpers /// /// [MethodImpl(MethodImplOptions.AggressiveInlining)] + [SuppressMessage("ReSharper", "InconsistentNaming")] public static object SwapStructureMembersEndian(object str) { Type t = str.GetType();