You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/ide/using-intellisense.md
+14-1Lines changed: 14 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -74,6 +74,19 @@ Complete Word completes the rest of a variable, command, or function name after
74
74
75
75
IntelliSense options are on by default. To turn them off, choose **Tools** > **Options** > **Text Editor** and deselect **Parameter information** or **Auto list members** if you do not want the List Members feature.
76
76
77
+
## IntelliSense icons
78
+
The icons in IntelliSense can convey additional meaning with icon modifiers. These are stars, hearts, and locks layered on top of the object's icon that convey protected, internal, or private, respectively.
|| Public class | Access is not restricted. |
83
+
|| Protected class | Access is limited to the containing class or types derived from the containing class. |
84
+
|| Protected internal class | Access is limited to the current assembly or types derived from the containing class. |
85
+
|| Internal class | Access is limited to the current assembly. |
86
+
|| Private class | Access is limited to the containing class or types derived from the containing class within the current assembly. (Available since C# 7.2.) |
87
+
88
+
89
+
77
90
## Troubleshoot IntelliSense
78
91
79
92
The IntelliSense options may not work as you expect in certain cases.
0 commit comments