Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

vs2010 c# debugging highlight color

The scenario is that I'm debugging some C# code in vs2010. I stop at a breakpoint. I step into a method. The current line is highlighted with yellow (I think by default). The line that I left before stepping into the method is now has a light grey background. Not bad if you have a dark text, but I have white text. Can't read it at all.

So, I want to change it, but what is it called?

like image 285
Jeff Walker Avatar asked May 23 '11 22:05

Jeff Walker


People also ask

Is Visual Studio C free?

Visual Studio Community. A fully-featured, extensible, free IDE for creating modern applications for Android, iOS, Windows, as well as web applications and cloud services.

What is the C++ version of Visual Studio 2010?

Visual Studio 2010 gives developers powerful new core language features from the upcoming C++0x standard. The Visual C++ compiler in Visual Studio 2010 has enabled six C++0x core language features: lambda expressions, auto keywords, rvalue references, static_assert, nullptr and decltype.

What is Microsoft Visual C++ 2010 x64 redistributable?

The Visual C++ Redistributable installs Microsoft C and C++ (MSVC) runtime libraries. These libraries are required by many applications built by using Microsoft C and C++ tools.

Is Visual Studio compatible with C?

Visual Studio Code is a lightweight, cross-platform development environment that runs on Windows, Mac, and Linux systems. The Microsoft C/C++ for Visual Studio Code extension supports IntelliSense, debugging, code formatting, auto-completion.


1 Answers

Both of these colors are customizable. Go to the fonts and colors menu

  • Tools -> Options
  • Environment -> Fonts And Colors

The values you are interested in are

  • Current Statement: this is the line currently displaying in yellow
  • Read-Only Region: this is the line currently displaying in grey
like image 110
JaredPar Avatar answered Oct 11 '22 14:10

JaredPar