In a lot of C# files I save regions tags(?) that are named CTOR or ctor. What\'s the meaning of ctor? Why is such a region called ctor?
It's just shorthand for "constructor" - and it's what the constructor is called in IL, too. For example, open up Reflector and look at a type and you'll see members called .ctor for the various constructors.
.ctor