コード例 #1
0
 public InternalConstructorWithoutRecursionRetrieval(ConstructorRetrieval next)
 {
     _next = next;
 }
コード例 #2
0
 private ConstructorRetrieval PrivateAndProtectedNonRecursiveConstructor(ConstructorRetrieval next)
 {
     return(new PrivateOrProtectedNonRecursiveConstructorRetrieval(next));
 }
コード例 #3
0
 public PublicRecursiveConstructorsRetrieval(ConstructorRetrieval next)
 {
     _next = next;
 }
コード例 #4
0
 public NonPublicParameterlessConstructorRetrieval(ConstructorRetrieval next)
 {
     _next = next;
 }
コード例 #5
0
 public SmartType(Type type, ConstructorRetrieval constructorRetrieval)
 {
     _type = type;
     _constructorRetrieval = constructorRetrieval;
     _typeInfo             = _type.GetTypeInfo();
 }
コード例 #6
0
 public PublicStaticFactoryMethodRetrieval(ConstructorRetrieval next)
 {
     _next = next;
 }
コード例 #7
0
 public InternalRecursiveConstructorRetrieval(ConstructorRetrieval next)
 {
     _next = next;
 }