i am _very_ new to the CLI, so my answers might be blatantly wrong, these are just guesses (senior folk please do advice):
> Is there any way one can print the CLI code (the ones we see in > ildasm code) as the managed code executes? > like for example there is the logging facility, so if > we log to console, we get all sorts of messages > ...log msg1... > ..appln msg.. > ..log msg2.. > ...etc.. > can we intersperse these messages with such > instructions > the need is - it would help to know the impact of each > instruction and what it is making the EE to perform. this may not be entirely possible, simply because at the time a method is actually runnning, the IL code doesnt exist anymore. remember that methods are compiled as they are needed to be run, and at that point the code of the method in-memory is no longer IL binary. however is you run the app with logging enables and use cordbg, wont you see the echoes and the code at the same time simply due to debug information that is available (though you may not see IL code) > if we need to pass parameters at runtime ie. while running > clix managed.exe what is the right way to do it. didnt really get your question, but again if you are using a unmanaged debugger, you always have an option to launch your application with switches, like in the gdb samples we see: (gdb) r hello.exe /* i know this is a bleeding obvious answer */ rosh. ps. Archana, are you part of Prof Y N Srikant and Prof Vaswani's SSCLI research team at IISC Bangalore ? -- COMPUTERBILD 15/03: Premium-e-mail-Dienste im Test -------------------------------------------------- 1. GMX TopMail - Platz 1 und Testsieger! 2. GMX ProMail - Platz 2 und Preis-Qualit�tssieger! 3. Arcor - 4. web.de - 5. T-Online - 6. freenet.de - 7. daybyday - 8. e-Post =================================== This list is hosted by DevelopMentor� http://www.develop.com NEW! ASP.NET courses you may be interested in: 2 Days of ASP.NET, 29 Sept 2003, in Redmond http://www.develop.com/courses/2daspdotnet Guerrilla ASP.NET, 13 Oct 2003, in Boston http://www.develop.com/courses/gaspdotnet View archives and manage your subscription(s) at http://discuss.develop.com
