Let's say we have these two structs...
public struct Example
{
public int Number { get; set; }
public Example(int Number)
{
Number = number;
}
}
and:
public struct Example
{
public int Number { get; set; }
public Example(int number) : this()
{
Number = number;
}
}
You can see that there's a struct with a constructor with **this()**
at the end and another without.
What is the difference between the two?