I've got a struct defined like this
private struct Combinators
{
public const char DirectChild = '>';
public const char NextAdjacent = '+';
public const char NextSiblings = '~';
public const char Descendant = ' ';
}
I want to use reflection to get a list of all the values of the public const char
fields in the struct (as specific as possible). How can I do that?