There was a posting in the list regarding debugging managed code running in
Rotor with VS.NET. But I didn't understand how to get this working. It
would be especially usefull for tracing into the corlib code.
Assume I have compiled the Hello test program and want to set a breakpoint.
How to get VS to break at that location?
using System;
class Hello
{
public static void Main()
{
// Create an array of strings.
string[] greeting = new string[] {"Hello", ", ", "World", "!"};
string s = System.Console.ReadLine();
// Display each element.
foreach(string str in greeting)
Console.Write(str);
// Display a newline.
Console.Write("\n");
}
}
Mirko