I'm debugging C# code. The error is almost certainly not in the threadedness of the code, and would be just as erroneous in single threaded code.
How can I disable threading, or disable async/await processing, so I can not have to worry about switching threads when I'm trying to go through the processing?
EDIT: I want to do this because when I tell the program to go to the next line, it goes to a different line from what I'm expecting. It's possible that there's something really easy that I don't understand. But when I hit F11 / Step Into, it doesn't go to the next line in the code. Maybe I have too many breakpoints? Maybe I don't know the command to say "follow this thread"? I'm not sure what I'm doing wrong.