Debugger navigation sample code (Xaml and C#)
Note
This article applies to Visual Studio 2015. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here
The code in this topic is the sample file for the Navigate a debug session (Xaml and C#) topic.
Sample Code
public MainPage()
{
InitializeComponent();
methodTrack = "Main Page";
Example1();
}
int Example1()
{
int a = 1;
methodTrack += "->Example1 ";
int x = Example1_A();
return a;
}
int Example1_A()
{
int b = 2;
methodTrack += "->Example1_B ";
return b;
}
void Example2()
{
int c = 3;
methodTrack += "->Example2 ";
int x = Example2_A();
int y = Example2_A();
int z = Example2_B();
}
int Example2_A()
{
int c = 3;
methodTrack += "->Example2_A ";
return c;
}
int Example2_B()
{
int d = 3;
methodTrack += "->Example2_B ";
return d;
}
void Example3()
{
string s = String.Empty;
for (int i = 0; i < 1000; i++)
{
s += i.ToString() + '\n';
}
methodTrack += "->Example3 ";
}
void Example4()
{
int x = 0;
int y = 100;
if (x != 0)
{
x = 1;
}
double result = y / x;
methodTrack = "->Example4";
}
string methodTrack = String.Empty;