Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
is_global = true

dotnet_analyzer_diagnostic.severity = none
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ internal sealed class ComInvokeBinder
private readonly bool[] _isByRef;
private readonly Expression _instance;

private readonly BindingRestrictions _restrictions;
private BindingRestrictions _restrictions;

private VarEnumSelector _varEnumSelector;
private string[] _keywordArgNames;
Expand Down
10 changes: 5 additions & 5 deletions src/System.Management.Automation/engine/ComInterop/ExcepInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ namespace System.Management.Automation.ComInterop
[StructLayout(LayoutKind.Sequential)]
internal struct ExcepInfo
{
private readonly short _wCode;
private short _wCode;
private short _wReserved;
private IntPtr _bstrSource;
private IntPtr _bstrDescription;
private IntPtr _bstrHelpFile;
private readonly int _dwHelpContext;
private readonly IntPtr _pvReserved;
private readonly IntPtr _pfnDeferredFillIn;
private readonly int _scode;
private int _dwHelpContext;
private IntPtr _pvReserved;
private IntPtr _pfnDeferredFillIn;
private int _scode;

#if DEBUG
static ExcepInfo()
Expand Down