Replies: 2 comments 1 reply
-
@awa5114 This is the repo for the C# language design. I recommend asking these sorts of questions in Discord or StackOverflow, etc. Thanks! |
Beta Was this translation helpful? Give feedback.
0 replies
-
At best this might be a question for the runtime as to what tooling they support for debugging. The C# language doesn't know about debugging and the compiler emits debug symbols but doesn't get involved in the tools expected to consume it. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Crossposting from SE
I'm on a (possibly futile) quest to find a command line based debugger for C# applications running on the .NET 6 framework. Something similar to
jdb
for java orpdb
for python. I'm on a windows machine. Here are the meagre resources I have found:devenv
The most promising by far would have been
MDbg
, but this looks very much outdated. The page on the NuGet repository shows no version compatible with .NET 6.I also made a post on reddit but this unfortunately did not generate much discussion or answers.
Being able to hop into the debugger from the command line is a common feature among several languages, so I feel like it should exist for C#, however convoluted the process may be.
Is there any way to do this in C#?
Beta Was this translation helpful? Give feedback.
All reactions