public HasTwoConstructors3(SimpleComponent1 x, SimpleComponent2 y)
 {
     X = x;
     Y = y;
 }
		public HasTwoConstructors4(SimpleComponent1 x)
		{
		}
 public UsesSimpleComponent1(SimpleComponent1 dependency)
 {
     this.dependency = dependency;
 }
		public HasTwoConstructors4(string text, SimpleComponent1 x, SimpleComponent2 y)
		{
		}
 public HasTwoConstructors3(SimpleComponent1 x, SimpleComponent2 y)
 {
     X = x;
     Y = y;
 }
		public UsesSimpleComponent1(SimpleComponent1 dependency)
		{
			this.dependency = dependency;
		}
Exemple #7
0
 public HasTwoConstructors4(SimpleComponent1 x)
 {
 }
Exemple #8
0
 public HasTwoConstructors4(string text, SimpleComponent1 x, SimpleComponent2 y)
 {
 }