Relative Content

Tag Archive for c#constructor

Implicit calls to “new” and “delete”?

While learning C++, I came across a statement that the constructor and destructor make implicit calls to new and delete operators during memory allocation. I am not able to understand it properly as while delving deep into this statement I found out that new and delete operators make implicit calls to constructors and destructors.
Now it’s really confusing…