How to work with .NET CLR?
I want to implement a small debugger
for my compan开发者_运维技巧y, anybody has any idea how to do this? Actually how to start working with .NET CLR
Update : I actually want to cehck a simple script with .NET clr, for instance
set a 12
set simulator
move a2 17
This is a simple script and I want to check the form of statements with CLR, is it possible or I have to implement a simple in-line validator for it?
I'm not sure if writing your own debugger is the right answer to your problem.
- I'm assuming that there would be on-the-shelf/already-invented Android debuggers available today that will help you get your job done faster.. than writing your own debugger.
- However if this is for the purpose of learning how to extend Visual Studio / the debugger, then the link that malkia posted in the comments should be your starting point.
There is a very interesting sample of a managed debugger available from Microsoft here: CLR Managed Debugger (mdbg) Sample 4.0 (this one targets the CLR 4 but there is also a version for CLR 2 available).
精彩评论