Tagged Questions
2
votes
2answers
78 views
Copy Constructor going to base constructor and overwriting copied values
Constructor Conundrum, I have these two constructors. One is for making a copy of the class and the other is the standard constructor. I need to call the first one so that I can use the rule in it. I ...
0
votes
3answers
320 views
Why in C# 3.0, when we overload constructor of a specified class, we should write default constructor in class body?
0, when we overload constructor of a specified class, we should write default constructor in class body? As far as I know, It was no need to do so.
class Test
{
public int ID {get; private ...
1
vote
2answers
664 views
Overloading Default Construction with Initializer List
I need to know how to get something to work. I've got a class with a constructor and some constants initialized in the initializer list. What I want is to be able to create a different constructor ...