What is the meaning of CTOR?

前端 未结 4 978
心在旅途
心在旅途 2021-01-30 12:08

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?

4条回答
  •  有刺的猬
    2021-01-30 12:45

    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.

提交回复
热议问题