Skip to content

Commit f8194f2

Browse files
authored
Update README.md
1 parent e91e710 commit f8194f2

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

README.md

+18
Original file line numberDiff line numberDiff line change
@@ -165,3 +165,21 @@ var typeRegistry = TypeRegistry.Configure((config) => {
165165
var factory = new ObjectFactory(typeRegistry);
166166
var car = factory.CreateEmptyObject<IVehicle>(); // car.GetType() == typeof(Car)
167167
```
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

0 commit comments

Comments
 (0)