Expression bodied members
member => expressionMethoden en EBM
public void ToonLeeftijd(int age)
{
Console.WriteLine(age);
}public void ToonLeetijd(int age) => Console.WriteLine(age);public int GeefGewicht()
{
return 4* 34;
}Constructors en EBM
Full Properties met EBM
Read-only properties met EBM
Last updated
Was this helpful?