具有以下 Helper 静态类
internal static class Helper
{
internal static class Properties
{
internal static class P1
{
public const string set1 = "abcd"
public const string set2 = "abdc"
}
internal static class P2
{
public const string set3 = "rbcd"
public const string set4 = "vbdc"
}
}
}
有以下方法
GetSettings(string value)
{
...
}
可以这样调用:
GetSettings(Helper.Properties.P2.set3);
我还想在 GetSettings 方法中访问 set3 的父类的名称。所以我不仅会知道 set3 的值是“rbcd”,我还会知道名称“P2”,然后是“Properties”和“Helper”。但我不知道该怎么做。有什么想法或建议吗?