Browser debugging and breakpoint debugging VS Shortcuts

VS browser debugging and commissioning
     set / unset breakpoints: F9
     Start / Continue debugging: F5 execution to the next breakpoint
     stepping into (the inner layer of the execution of the current level of statement): F8 / F11
     -by-process (execution of the current level of statement) : (shift + F8) / F10
     -layer out of the hierarchy: (ctrl + shift + F8)
     monitoring variables: (shift + F9) hover over the variables, the values of variables can be monitored. You can also right click on the Add Watch, the value of the monitored variable
     F10-by-process (do not enter the internal functions, direct access to operating results function)
     F11-by-statement (enter function), if you want to jump out of the function press shift + F11, if for some function use the definition is not clear, press F12 to go to definition.
     F6 to build the solution

F1 Help F3 to find a, F4 Properties window, F5 debugging, F6 generation solutions, F7 to view the code, F9 breakpoints, F10-by-process debugging, F11 commissioning by the statement, F12: Go to the calling procedure or defined variables

  1 to find: Ctrl + F (on the general page, many other places are applicable)

  2, replace: Ctrl + F

  3, code hints suddenly gone: Ctrl + J code hints came out

  4, the code layout: Ctrl D + K +

  . 5, the console application, c + w + Tab obtained, Console.WriteLine ();

  . 6, private fields, generating property: the Ctrl + E + R & lt

  . 7, the Ctrl + left and right arrow keys: one can move a word

  8, Ctrl + m + crtr + o all folded outline

  9, prop + Tab + Tab (C # attributes created, after switching position with the Tab)

   10, the Ctrl + C + E (Note) <=> Ctrl + K + C (Note)

        the Ctrl + E + the U-(canceled comment) <=> Ctrl + K + U (uncommented)

  11, the Tab: increase indent

  12, Ctrl + Tab (switch VS different document window)  

     Alt + the Tab (switch between different windows of Windows)

Guess you like

Origin www.cnblogs.com/ssz00/p/11141912.html