I\'m in the learning process and I have a question I havent been able to find a satisfactory answer for.
this I need a rundown on it. I keep seeing it a
this
It's used to invoke another constructor in the class:
public class Test { public Test() : this("AmazingMrBrock") { } public Test(string name) { Console.WriteLine(name); } }
http://msdn.microsoft.com/en-us/library/vstudio/ms173115.aspx