Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm guessing this is saying the Constructor for OrderRepository passes its parameter to the base constructor?

public OrderRepository(MFEntitiesContainer context) : base(context) { }

share|improve this question
Is this a feature of all versions of C#? – Mr. Manager Jul 13 '11 at 15:35
1  
It is. See the documentation for VS 2003: msdn.microsoft.com/en-us/library/k6sa6h87(v=VS.71).aspx – Oded Jul 13 '11 at 15:37
1  
You can also use "this" instead of "base" to chain a call to a different constructor in the current type rather than in the base type. – Eric Lippert Jul 13 '11 at 17:17
Chaining .ctors within the same type can be very convenient. – Greg D Jul 14 '11 at 13:46

2 Answers

up vote 5 down vote accepted

This is called constructor chaining - you are chaining the constructor to the base constructor overload.

As you assume, it passes the parameter to the matching base class constructor.

share|improve this answer
Thanks. Exactly what I needed. I was looking for the terminology to describe the syntax, so I could google it myself. – Mr. Manager Jul 13 '11 at 15:41

Correct. Its calling the "base constructor".

See this page on constructors.

http://msdn.microsoft.com/en-us/library/ms173115(v=VS.100).aspx

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.