How can I change this character to this != in Visual Studio for C#? Does someone know how to do it? Thanks a lot beforehand.

Sorry if it’s not a properly question but I’ve not found any answer on the internet about how to do it.
>Solution :
Microsoft has developed a new font for developers called Cascadia Code and it has a number of features that replace multi-character language constructs to a visual representation called Ligatures. There are other "developer fonts" with similar features.
- https://monaspace.githubnext.com/
- https://github.com/microsoft/cascadia-code
- https://www.slant.co/topics/5611/~monospace-fonts-with-programming-ligatures
Cascadia Code:
If you don’t like these, you can switch back to Cascadia Mono (or another mono-spaced font without ligature support):
In Visual Studio Code there is a configuration setting to disable ligatures:
"editor.fontLigatures": false
Unfortunately, Visual Studio 2022 and below do not have an option to configure whether (or which) ligatures are enabled.


