We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b1cc06 commit 0a6774eCopy full SHA for 0a6774e
samples/snippets/visualbasic/VS_Snippets_CLR_Classic/classic FieldInfo.IsAssembly Example/VB/source.vb
@@ -7,6 +7,7 @@ Public class Example
7
Friend f_Friend As Integer
8
Protected f_Protected As Integer
9
Protected Friend f_Protected_Friend As Integer
10
+ Private Protected f_Private_Protected() As Integer
11
12
Public Shared Sub Main()
13
@@ -39,5 +40,6 @@ End Class
39
40
'f_Friend False True False False False
41
'f_Protected False False True False False
42
'f_Protected_Friend False False False True False
43
+'f_Private_Protected False False False False True
44
' </Snippet1>
45
0 commit comments