Visual Studio - a way to display statements as opposed to text Example: ≠ instead! =

I had to reinstall everything on my computer, including Visual Studio, to my question, before I reinstall Visual Studio, the code on my C # programs was shown in a method using Unicode operators, for example:

if (1 ≠ 2) { } 

instead

 if (1 != 2) { } 

However, after reinstalling Visual Studio, they returned to the text format, does anyone know which parameter I need to enable in order to show them as Unicode versions?

Any help you could give would be greatly appreciated.

+8
c # unicode visual-studio-2017
source share
1 answer

You just need to install a font that includes software ligatures, and then tell VS to use that font. I believe Fira Code is currently the most comprehensive programming font.

+9
source share

All Articles