Can somone please tell me what does the syntax below means?
public ScopeCanvas(Context context, IAttributeSet attrs) : base(context, attrs)
{
}
I mean what is method(argument) : base(argument) {} ??
P.S This is a constructor of a class.
|
|
The
There is also the |
|||
|
|
|
Your class is likely defined like this:
It derives from some other class. Here's a related question. EDIT As noted by Tilak, the MSDN documentation on the base keyword provides a good explanation. |
||||
|
|
|
to call named constructor of base class. if base( argument ) is not specified, parameterless constructor is called |
|||
|
|
|
It calls the constructor from the base class passing the arguments |
|||
|
|
|
You class is inheriting from a baseclass, and when you intialize an object of type ScopeCanvas, the base constructor is called with a parameter list of (context, attrs) |
|||
|
|
|
This means that this constructor takes two arguments, and passes them to the inherited objects constructor. An example below with only one argument.
|
|||
|
|
|
This is an abstract overloaded class constructor which allows for initilizing of arguments for the derived and the base class and specifying if an overloaded constructor is to be used. LINK
|
|||
|
|