Home > Enterprise >  C# (Visual Studio IDE / VSCode) - how to hide .NET types
C# (Visual Studio IDE / VSCode) - how to hide .NET types

Time:10-24

When I begin to write type Visual Studio IDE and VSCode show not only the C# types but .Net types also (i.e: int - Int16, byte - Byte):

enter image description here

Is it possible to hide .Net type intelliSense?

CodePudding user response:

Maybe this answer could help you: enter image description here

enter image description here

You can also choose not to show the structure when writing the type, but you need to select it manually after writing.

enter image description here

  • Related