I'm trying to get a better understanding of general practice... specifically deriving this() in a constructor. I understand that its less code, but I consider it less readable. Is it common/good practice to do it this way? Or is it better to write a second constructor that handles it specifically?
public SomeOtherStuff(string rabble) : this(rabble, "bloop") { }
or
Public SomeOtherStuff(string rabble)
{
//set bloop
}
Any input would be greatly appreciated