What does ":this(100)" mean in a C# method declaration?
While reading MDSN docs I came across it in line 6 of the following code:
public class Stack
{
readonly int m_Size;
int m_StackPointer = 0;
object[] m_Items;
public Stack():this(100)
{}
public Stack(int size)
{
m_Size = size;
m_Items = new object[m_Size];
}
}