When I decompile the exe file, it gives a spelling errors.]1
Asked
Active
Viewed 460 times
0
-
Please [edit] your question to include the decompiled code as **text** rather than as a screenshot. On stack overflow images should not be used for textual content, see [*Discourage screenshots of code and/or errors*](https://meta.stackoverflow.com/a/307500) and [*Why not upload images of code on SO when asking a question*](https://meta.stackoverflow.com/a/285557) for why. For instructions on formatting see *[How do I format my code blocks?](https://meta.stackexchange.com/q/22186)*. A [mcve] showing what you have tried that did not work would maximize your chances of getting help. See [ask]. – dbc Jul 05 '22 at 20:44
-
Anyway those look like internal, hidden members and classes generated by the c# compiler when it converts `async` code into a state machine. See https://www.codeproject.com/Articles/878930/Internal-Implementation-of-Async-Methods-in-NET-Pa. I believe the compiler uses invalid identifier names for such internally generated stuff so as to not conflict with identifiers used in the code. – dbc Jul 05 '22 at 20:45
-
1`Options->Decompiler->C#->Show hidden decompiler generated classes and methods` – Charlieface Jul 05 '22 at 23:35