Stories recently tagged with 'abstract'

.NET: Why aren't Private Abstract methods allowed?(pietschsoft.com)

submitted by crpietschmanncrpietschmann(11.3k) 3 years, 11 months ago

Sometimes when creating base objects you want to create methods that are overridable by object that inherit the base object, but keep the methods from being public. However, the compiler throws an exceptions when you try to define a method as "Private Abstract". read more...

3 comments |category: |Views: 5

tags: another

New For VS2005 - Abstract Stub Generation(blogs.msdn.com)

submitted by CharlieCalvertCharlieCalvert(7875) 5 years, 2 months ago

Visual Studio 2005 includes a new feature to generate stubs for methods in an abstract base class. Here's an example of how it works. read more...

add a comment |category: |Views: 6

tags: another

Should I use an abstract class or an interface?(en.csharp-online.net)

submitted by HyleHyle(2755) 5 years, 3 months ago

There are both pros and cons to the functionality made available through the use of abstract classes and of interfaces even though there capabilities seem similar. This article discusses the trade-offs and recommends when to use each. read more...

add a comment |category: |Views: 13

tags: another

Abstract Class vs Interface(geekswithblogs.net)

submitted by RobChappelRobChappel(2720) 5 years, 7 months ago

There are lost of discussion on the internet about the Interface vs Abstract class. Also, as base class whether we have to use interface, abstract class or normal class. This post points out a few considerations on which we can take decision about Interface vs Abstract class vs Class. read more...

add a comment |category: |Views: 78

tags: another