Retrieves names of all class/struct/union Class fields excluding technical ones like this, Monitor.
class A { int aField; void func1() {} static void func2() {} string b; final func3() {} abstract void func4(); bool c; } static assert(FieldNameTuple!A == ["aField","b","c"]);
See Implementation
Retrieves names of all class/struct/union Class fields excluding technical ones like this, Monitor.