Context:
Suppose one has the following class structure:
public static class SomeStaticClass
{
public static class SomeInnerStaticClass
{
public static readonly string SomeProperty = "someStringValue";
}
}
Question:
Is there an easy way to convert the reference SomeStaticClass.SomeInnerStaticClass.SomeProperty to string value of “SomeStaticClass.SomeInnerStaticClass.someStringValue”?
the first thing I posted was wrong because they were static types I wrote a little code and this works.