By tag: abstract
0
kicks
.NET: Why aren't Private Abstract methods allowed?
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".
0
kicks
New For VS2005 - Abstract Stub Generation
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.
0
kicks
Should I use an abstract class or an interface?
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.
0
kicks
Abstract Class vs Interface
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.