4
votes
How can I prevent a base constructor from being called by an inheritor in C#?
There is a way to create an object without calling any constructors.
Before you proceed, be very sure you want to do it this way. 99% of the time this is the wrong solution.
…
2
votes
Partial Class Constructors
Search for "partial methods". This will do exactly what you want.
For example:
public partial class Test
{
public Test()
{
//do stuff
DoExtraStuff …
