Type.IsNestedPrivate Property
Silverlight
Gets a value indicating whether the Type is nested and declared private.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Property Value
Type: System.Booleantrue if the Type is nested and declared private; otherwise, false.
If the current Type represents a type parameter of a generic type, this property always returns false.
TypeAttributes.VisibilityMask selects the visibility attributes.
The following example declares a nested class as private and displays the IsNestedPrivate property value of the nested class.
Note: |
|---|
To run this example, see Building Examples That Use a Demo Method and a TextBlock Control. |
using System; // Outer class. public class Example { // Private nested class. private class MyClassB { } public static void Demo(System.Windows.Controls.TextBlock outputBlock) { // Get the type of the nested class. Type myTypeB = typeof(Example.MyClassB); // Get the IsNestedPrivate property of the nested class. outputBlock.Text += String.Format("\nThe IsNestedPrivate property value of the nested class is {0}.", myTypeB.IsNestedPrivate.ToString()) + "\n"; } }
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
Note: