File tree 1 file changed +18
-0
lines changed
1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -165,3 +165,21 @@ var typeRegistry = TypeRegistry.Configure((config) => {
165
165
var factory = new ObjectFactory (typeRegistry );
166
166
var car = factory .CreateEmptyObject <IVehicle >(); // car.GetType() == typeof(Car)
167
167
```
168
+
169
+ ### Capabilities
170
+
171
+ - [x] All basic types, enums, generics, collections and enumerables
172
+ - [x] Internal caching of type examination
173
+ - [x] Constructor analysis (empty constructors, parameterized constructors)
174
+ - [x] Easy listing of valid Enum values
175
+ - [x] Easy listing of concrete types implementing an interface
176
+ - [x] Easy listing of attributes
177
+ - [x] Easy listing of generic arguments
178
+ - [x] Easy listing of properties/fields
179
+ - [x] Easy listing of implemented interfaces
180
+ - [x] Easy listing of Tuple/ValueTuple types
181
+ - [x] Nullable type detection
182
+ - [x] Custom collection information detection
183
+ - [x] Primitive / Struct detection
184
+ - [x] Anonymous type detection
185
+ - [x] High performance testing and optimization
You can’t perform that action at this time.
0 commit comments