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
<PackageReference Include="netfx-System.TypeInheritance" Version="1.1.1" />
paket add netfx-System.TypeInheritance --version 1.1.1
#r "nuget: netfx-System.TypeInheritance, 1.1.1"
// 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);
Learn more about Target Frameworks and .NET Standard.
-
- netfx-Guard (>= 1.2.0)
- netfx-System.Collections.Generic.IEnumerable.Traverse (>= 1.0.0.9)
GitHub repositories
This package is not used by any popular GitHub repositories.