예제 #1
0
 /// <summary>
 ///   Prepares to register types from a list of types.
 /// </summary>
 /// <param name = "types">The list of types.</param>
 /// <returns>The corresponding <see cref = "FromDescriptor" /></returns>
 public static FromTypesDescriptor From(params Type[] types)
 {
     return(Classes.From(types));
 }
예제 #2
0
 /// <summary>
 ///   Prepares to register types from a list of types.
 /// </summary>
 /// <param name = "types">The list of types.</param>
 /// <returns>The corresponding <see cref = "FromDescriptor" /></returns>
 public static FromTypesDescriptor From(IEnumerable <Type> types)
 {
     return(Classes.From(types));
 }