From the course: Visual Studio 2019 Essential Training

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Use hover tips

Use hover tips - Visual Studio Tutorial

From the course: Visual Studio 2019 Essential Training

Start my 1-month free trial

Use hover tips

- I'll bet you are familiar with the concept of the tool tip, or a miniature floating window that pops up as you move your mouse around your computer screen. Visual Studio has some of these hover tips that work this way in the code editor screens. I'll start by looking at the code in this C Sharp file. As I move my house around you'll see everything I hover over has a hover tip that pops up. Some of the information in these hover tips is useful some of it's not so useful. Like if I hover over this it tells me it's a name space called System, but I probably could have figured that out by looking at it. Same here, hover over this, it tells me it's a class. Where it gets more interesting is as I work through code inside this method. Here you can see I'm declaring a number of variables, then I'm passing a few of those variables to a method called add numbers, then I'm writing out some information to the consol, and then down here I've got the actual code that does the work of adding the…

Contents