We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This: hr != HResult.E_FAIL is suspicious.
hr != HResult.E_FAIL
internal static void ThrowExceptionForHR(int hr) { // E_FAIL indicates "no info". // E_NOTIMPL indicates a lack of ISymUnmanagedReader support (in a particular implementation). if (hr < 0 && hr != HResult.E_FAIL && hr != HResult.E_NOTIMPL) { Marshal.ThrowExceptionForHR(hr, s_ignoreIErrorInfo); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This:
hr != HResult.E_FAIL
is suspicious.The text was updated successfully, but these errors were encountered: