Constructor query

  • Thread starter Thread starter Sems
  • Start date Start date
S

Sems

On a construtor such as...

public Article(ViewModelContext<INewsArticle> context = null) :
base(context) {}

what does the ': base(context)' part mean?
 
On a construtor such as...

public Article(ViewModelContext<INewsArticle> context = null) :
base(context) {}

what does the ': base(context)' part mean?

That the super class'es constructor is called
with context.

Arne
 
Back
Top