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 fdb106e commit 6b1cc06Copy full SHA for 6b1cc06
samples/snippets/csharp/VS_Snippets_CLR_Classic/classic FieldInfo.IsAssembly Example/CS/source.cs
@@ -8,6 +8,7 @@ public class Example
8
internal int f_internal;
9
protected int f_protected;
10
protected internal int f_protected_public;
11
+ private protected int f_private_protected;
12
13
public static void Main()
14
{
@@ -39,5 +40,6 @@ f_public True False False False False
39
40
f_internal False True False False False
41
f_protected False False True False False
42
f_protected_public False False False True False
43
+f_private_protected False False False False True
44
*/
45
// </Snippet1>
0 commit comments