Tagged Questions
5
votes
6answers
582 views
Overload “base” constructor or “this” constructor?
I have few types that derive from simplified Base as shown below.
I am not sure whether to use base class's constructor or this constructor when overloading constructors.
ConcreteA overloads ...
0
votes
3answers
233 views
C# constructors overloading
How I can use constructors in C# like this:
public Point2D(double x, double y)
{
// ... Contracts ...
X = x;
Y = y;
}
public Point2D(Point2D point)
{
if (point == null)
...