G
Guest
I still beginner in C# and i wondering what below line (*) means
public abstract class DataCollection : ICollection, ISerializable,
IDeserializationCallback
{
private const int defaultCapacity = 8;
protected DataCollection() : this(defaultCapacity)
//(*) This Line why colon after constructor, What is means?
{
}
}
public abstract class DataCollection : ICollection, ISerializable,
IDeserializationCallback
{
private const int defaultCapacity = 8;
protected DataCollection() : this(defaultCapacity)
//(*) This Line why colon after constructor, What is means?
{
}
}