DotNetShoutout - Stories tagged with Inheritance
3
Shouts

Inheritance Margin extension for Visual Studio 2010 review

posted by SergeyVlasovSergeyVlasov 526 days, 10 hours, 34 minutes ago
Thursday, December 15, 2011 12:12:58 PM GMT
Visualize overridden and overriding methods in C# code… (more)
category: How To | clicked: 45 | comment | | source: visualstudioaddins.svprogramming.net
tags: visual studio extensions, Inheritance, C#, Visual Studio 2010
3
Shouts

How to call the method from the base of the base of the current class ? (base.base.MyMethod)

posted by jmix90jmix90 744 days, 46 minutes ago
Wednesday, May 11, 2011 10:00:19 PM GMT
In this post we will discover how to call a second-level base method on a class. Actually, this would be like using base.base.MyMethod() was working in C# ! It can be interesting when we need to skip one implementation in the inheritance path... (more)
category: How To | clicked: 1 | comment | | source: blog.lexique-du-net.com
tags: .NET, Delegate, Inheritance, C#, base
5
Shouts

Are Private Members Inherited?

published 1017 days, 8 hours, 27 minutes ago posted by KodefuGuruKodefuGuru 1018 days, 9 hours, 36 minutes ago
Wednesday, August 11, 2010 2:19:45 PM GMT Tuesday, August 10, 2010 1:10:28 PM GMT
On one level, it would appear that classes don’t inherit private members. Public and protected members are accessible by the subclass, but those pesky privates seemingly can’t be accessed. Of course, they’re there, otherwise calls to the exposed methods would not work. Then, there’s always reflection to access them. But I’m not really concerned about reflection or lower-level activities such as memory access; I’m more interested in the higher level concept of inheritance. Is the private member passed on ... (more)
category: How To | clicked: 2 | 1 comment | | source: www.kodefuguru.com
tags: Inheritance, C#, OOP
4
Shouts

Inheritance VB style - Override, overload, shadow

published 1072 days, 9 hours, 10 minutes ago posted by mikeukmikeuk 1073 days, 8 hours, 27 minutes ago
Thursday, June 17, 2010 1:36:18 PM GMT Wednesday, June 16, 2010 2:19:33 PM GMT
Inheritance is core to object-oriented programming and VB .NET is 100% object oriented but don’t think that VB just does it the same way as say C#. No, VB has its very own pragmatic approach to inheritance as we explain... (more)
category: How To | clicked: 2 | comment | | source: www.i-programmer.info
tags: Inheritance, Visual Basic
5
Shouts

Code contracts and inheritance

published 1108 days, 13 hours, 4 minutes ago posted by gpeipmangpeipman 1109 days, 1 hour, 28 minutes ago
Wednesday, May 12, 2010 9:42:25 AM GMT Tuesday, May 11, 2010 9:18:47 PM GMT
In my last posting about code contracts I introduced you how to force code contracts to classes through interfaces. In this posting I will go step further and I will show you how code contracts work in the case of inherited classes. (more)
category: How To | clicked: 0 | comment | | source: weblogs.asp.net
tags: Code Contracts, Inheritance, Visual Studio 2010
7
Shouts

Controlling Inheritance - Chapter Five of Deep C#

published 1202 days, 11 hours, 27 minutes ago posted by mikeukmikeuk 1204 days, 13 hours, 32 minutes ago
Sunday, February 07, 2010 11:19:44 AM GMT Friday, February 05, 2010 9:14:12 AM GMT
Inheritance is difficult and C# provides ways to control it or even to forbid its use. So how does that work!? (more)
category: How To | clicked: 2 | comment | | source: www.i-programmer.info
tags: Inheritance, C#, sealed
5
Shouts

Table Per Concrete Type Inheritance in Entity Framework - Gil Fink on .Net

posted by gilfgilf 1215 days, 16 hours, 57 minutes ago
Monday, January 25, 2010 5:49:36 AM GMT
The last inheritance mapping that I’m going to write about is the Table Per Concrete Type inheritance (TPC). This inheritance type is very rare but you should be aware of how to create it when it is needed. You can read about TPT and TPH from here and from here. (more)
category: How To | clicked: 0 | comment | | source: blogs.microsoft.co.il
tags: Entity Framework, Inheritance
8
Shouts

Table Per Hierarchy Inheritance in Entity Framework - Gil Fink on .Net

published 1215 days, 10 hours, 35 minutes ago posted by gilfgilf 1216 days, 14 hours, 29 minutes ago
Monday, January 25, 2010 12:11:40 PM GMT Sunday, January 24, 2010 8:17:03 AM GMT
In the second inheritance mappings tutorials I’m going to write about the Table Per Hierarchy (TPH) inheritance mapping. If you want to read about the first mapping I showed go to the Table Per Type post from here. (more)
category: How To | clicked: 1 | comment | | source: blogs.microsoft.co.il
tags: Entity Framework, Inheritance
9
Shouts

Table Per Type Inheritance in Entity Framework - Gil Fink on .Net

published 1216 days, 11 hours, 2 minutes ago posted by gilfgilf 1218 days, 13 hours, 13 minutes ago
Sunday, January 24, 2010 11:44:10 AM GMT Friday, January 22, 2010 9:33:32 AM GMT
The first inheritance mapping I’m going to show is called Table Per Type or TPT. Before I start with the example lets define what is TPT. (more)
category: How To | clicked: 1 | comment | | source: blogs.microsoft.co.il
tags: Entity Framework, Inheritance, Mapping, TPT