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
public AttachControl() { this.AddHandler(UIElement.KeyDownEvent, new KeyEventHandler(OnGotMouseCaptureEventDirect),true); }
public AttachControl() { this.AddHandler(UIElement.KeyDown, new KeyEventHandler(OnGotMouseCaptureEventDirect),true); }
Decompile: Source:
The text was updated successfully, but these errors were encountered:
seems
internal static bool IsEventBackingFieldName(string fieldName, string eventName, out int suffixLength) { suffixLength = 0; if (fieldName == eventName) return true; var vbSuffixLength = "Event".Length; if (fieldName.Length == eventName.Length + vbSuffixLength && fieldName.StartsWith(eventName, StringComparison.Ordinal) && fieldName.EndsWith("Event", StringComparison.Ordinal)) { suffixLength = vbSuffixLength; return true; } return false; }
caused this error
Sorry, something went wrong.
switch DecompilerSettings.DecompileAutomaticEvents to off . is correct.
c478ccc
No branches or pull requests
Input code
Erroneous output
Decompile:
Source:
Details
The text was updated successfully, but these errors were encountered: