netfx-System.TypeInheritance 1.1.1

dotnet add package netfx-System.TypeInheritance --version 1.1.1
NuGet\Install-Package netfx-System.TypeInheritance -Version 1.1.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="netfx-System.TypeInheritance" Version="1.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add netfx-System.TypeInheritance --version 1.1.1
#r "nuget: netfx-System.TypeInheritance, 1.1.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install netfx-System.TypeInheritance as a Cake Addin
#addin nuget:?package=netfx-System.TypeInheritance&version=1.1.1

// Install netfx-System.TypeInheritance as a Cake Tool
#tool nuget:?package=netfx-System.TypeInheritance&version=1.1.1

Allows inspecting the exact type inheritance tree as declared in source, rather than the flattened view that reflection provides (for implemented interfaces, for example).

Enables code to determine what are the interfaces implemented directly by a type rather than a base class, as well as determine the "distance" in the hierarchy to those implementations.

var tree = typeof(Window).GetInheritanceTree();

// Gets just the base class ContentControl, instead
// of that plus 9 interfaces implemented on base types
Assert.Equal(1, tree.Inheritance.Count);
Assert.Equal(typeof(ContentControl), tree.Inheritance.First().Type);

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.1 238 8/2/2012
1.1.0 60 8/30/2011
1.0.0.12 52 6/15/2011
1.0.0.10 52 5/20/2011
1.0.0.4 62 3/20/2011
1.0.0.3 60 3/20/2011
1.0.0.2 61 3/20/2011
1.0.0.1 60 3/20/2011