The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
Type.IsAbstract Property
Silverlight
Gets a value indicating whether the Type is abstract and must be overridden.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
If the current Type represents a type parameter in the definition of a generic type or generic method, this property always returns false.
The following example returns true if the specified object is abstract; otherwise, it returns false.
Note: |
|---|
To run this example, see Building Examples That Use a Demo Method and a TextBlock Control. |
using System; using System.Reflection; public abstract class MyAbstractClass { } public class MyClass { } public class Example { public static void Demo(System.Windows.Controls.TextBlock outputBlock) { try { // Check whether the return type of MyAbstractClass is abstract or not. outputBlock.Text += "\nChecking whether the type is abstract.\n" + "\n"; outputBlock.Text += String.Format("MyAbstractClass is {0}", (typeof(MyAbstractClass).IsAbstract) ? "an abstract class." : "not an abstract class.") + "\n"; // Check whether the return type of MyClass is abstract or not. outputBlock.Text += String.Format("MyClass is {0}", (typeof(MyClass).IsAbstract) ? "an abstract class." : "not an abstract class.") + "\n"; } catch (Exception e) { outputBlock.Text += String.Format("Exception: {0} \n", e.Message) + "\n"; } } }
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
Note: