Friday, April 3, 2015

How do you use the immediate window in Visual Studio?

http://stackoverflow.com/questions/794255/how-do-you-use-the-immediate-window-in-visual-studio

private static int GetSum(int a, int b)
{
    return a + b;
}
Then in the Immediate Window you can type the following:
? GetSum(2, 4)
6

No comments:

Post a Comment