Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
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
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
Morty Proxy This is a proxified and sanitized view of the page, visit original site.