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

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