Exemplo n.º 1
0
        public static ComplexObjectWithFactoryMethodAndRecursiveConstructor Create(string parameterName)
        {
            ComplexObjectWithFactoryMethodAndRecursiveConstructor createdWrapper =
                new ComplexObjectWithFactoryMethodAndRecursiveConstructor(parameterName);

            return(createdWrapper);
        }
Exemplo n.º 2
0
 public ComplexObjectWithFactoryMethodAndRecursiveConstructor(
     ComplexObjectWithFactoryMethodAndRecursiveConstructor obj) : this(obj._initialValue)
 {
 }