-
Use keywords to get metadata. For example: public class Foo
{
public int _index;
public string Name;
public void Get(){}
public void Get(string){}
} Keywords: var getMethodInfo = methodOf(Foo.Get);
var getMethodInfo2 = methodOf(Foo.Get(string));
var indexFieldInfo = fieldsOf(Foo._index);
var namePropInfo = propOf(Foo.Name);
var memberInfo = memberOf(Foo.XXX); |
Beta Was this translation helpful? Give feedback.
Answered by
HaloFour
Sep 29, 2020
Replies: 1 comment 1 reply
-
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
NMSAzulX
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
#712