I\'m just getting the concept of chaining constructors down, but I can\'t figure out how to chain these two particular constructors together, so I would appreciate it if somebody could help me out.
I would like my default constructor to create & initialize all the objects shown in my code snippet. Then I would like my parameterized constructor to call the default constructor, thus creating a
In the following code: public class A { public A():this(null)开发者_JS百科{} public A(string b){/*code here*/}