You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The latest repo gets many suggestions below that clutters up the error window.
Severity Code Description Project File Line Suppression State Details
Message SYSLIB1092 The usage of 'LibraryImportAttribute' does not follow recommendations. It is recommended to use explicit '[In]' and '[Out]' attributes on array parameters. System.Drawing.Common (net9.0) ...Repos\winforms\src\System.Drawing.Common\src\Interop\Windows\Gdi32\Interop.ExtEscape.cs 43
Many could be easily eliminated by changing
byte[] inData,
to
[In] byte[] inData,
Some are more difficult to fix and it not obvious if the fix should be [In] or [Out] or disabling SYSLIB1092 in editorConfig
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
The latest repo gets many suggestions below that clutters up the error window.
Many could be easily eliminated by changing
to
Some are more difficult to fix and it not obvious if the fix should be [In] or [Out] or disabling SYSLIB1092 in editorConfig
All reactions