Documentation
Opened this issue · 3 comments
SuperJMN commented
Hi! the idea is interesting. I'm always having troubles with tasks like invoking the ToList extensoin method on something via reflection.
However, I haven't found any documentation in this project. I hope you could add samples to clarify how this library can be used.
Thanks :)
danielcrenna commented
@SuperJMN This is a fair point.
I just started a GitBook for this: https://daniel-crenna.gitbook.io/typekitchen/
I added field & property access, I'll ping you when I get an example for your use case added, should be shortly.
SuperJMN commented
Thanks a lot! I'm really looking forward to it
SuperJMN commented
@danielcrenna I've found a interesting use case for TypeKitchen:
await instance.ExecuteTask("Method", parameters)
Given that instance
is a reference to MyClass
, and having this
class MyClass
{
Task<object> Method(int a, int b, string c) { ... }
}
What do you think?