Click here to Skip to main content
15,892,809 members
Everything / Inheritance

Inheritance

inheritance

Great Reads

by GProssliner
cobj is a preprocessor based generator for interface based polymorphism
by Mark Pelf
Tutorial on “Prototypal Inheritance” in JavaScript language
by Martin ISDN
Solid JavaScript from facts to rules
by tonyt
namespace System{ public static class SystemExtensionMethods { public static string GetAncestry( this object target ) { return string.Join( " -> ", target.GetTypes().Reverse().Select( t => FormatName( t ) ).ToArray() ); } public...

Latest Articles

by Mark Pelf
Tutorial on “Prototypal Inheritance” in JavaScript language
by Lee P Richardson
How to secure external web APIs
by Martin ISDN
Solid JavaScript from facts to rules
by gfazzola
In this article I will explain the implementation of an infrastructure to host and manage windows services in a practical and interactive way.As a practical example of the solution will be implemented a dynamic ip update client of DucDNS

All Articles

Sort by Score

Inheritance 

31 Jul 2010 by tonyt
namespace System{ public static class SystemExtensionMethods { public static string GetAncestry( this object target ) { return string.Join( " -> ", target.GetTypes().Reverse().Select( t => FormatName( t ) ).ToArray() ); } public...
23 Jul 2010 by johannesnestler
OriginalGriff has made a nice and small class. But I don't think I would use this code in an application. Most times when I want to know about the inheritance chain of an object is while I'm coding. So a quick and nice (commandline?) tool would be a better fit, I think. The problem with...
5 Oct 2012 by Bryan Lyman
Generic list wrapper that returns a smaller strongly typed sub-list which modifies the parent-list when changed, without using events
25 Jul 2010 by Luc Pattyn
This is an alternative to "Following Object Inheritance"
24 Oct 2013 by Artem Elkin
Thoughts of how implementation inheritance violates Dependency Injection and Dependency Inversion principles.
18 Feb 2015 by Joezer BH
Understanding structs - why C# does not allow a struct to be inherited
23 Jul 2010 by OriginalGriff
Sometimes, it helps to know the complete inheritance of an object or type in order to understand what can be done with it. This Tip presents a simple C# class to access the information