Reputation: 114046
I've often seen the word "ctor" used in class constructors. What does it mean?
Upvotes: 14
Views: 5770
Reputation: 46415
Yes, It does stand for ConstrucTOR.
Btw, it is used as a shortcut for writing the default constructor in Visual C#.
Try, [ctor + press tab twice]
= default constructor.
Upvotes: 6