Give a class like:
class C { static int a, b, c; int d; }
I'd like to get a, b and c. I'm using this:
__traits(allMembers, C)
Marc via Digitalmars-d-learn Wed, 03 Jan 2018 15:51:03 -0800
Give a class like:
class C { static int a, b, c; int d; }
I'd like to get a, b and c. I'm using this:
__traits(allMembers, C)