示例#1
0
        public static ComplexObjectWithFactoryMethodAndRecursiveConstructor Create(string parameterName)
        {
            ComplexObjectWithFactoryMethodAndRecursiveConstructor createdWrapper =
                new ComplexObjectWithFactoryMethodAndRecursiveConstructor(parameterName);

            return(createdWrapper);
        }
示例#2
0
 public ComplexObjectWithFactoryMethodAndRecursiveConstructor(
     ComplexObjectWithFactoryMethodAndRecursiveConstructor obj) : this(obj._initialValue)
 {
 }