R
Ruben
Hi!
I am looking for a way to get the name of a class-member as string, as
example:
class A
{
public string a;
}
[...]
string MemberName = GiveMeTheNameOf(A.a);
What I want is: MemberName == "A.a"
Is there any way to do that?
Thank you!
Ruben
I am looking for a way to get the name of a class-member as string, as
example:
class A
{
public string a;
}
[...]
string MemberName = GiveMeTheNameOf(A.a);
What I want is: MemberName == "A.a"
Is there any way to do that?
Thank you!
Ruben