I have a static class in a refrenced assembly(named "DAL") named "A7":
A7 like this:
public static class A7
{
public static readonly bool NeedCoding = false;
public static readonly string Title = "Desc_Title"
public static readonly string F0 = "";
public static readonly string F1 = "Desc_F1";
public static readonly string F2 = "Desc_F2";
public static readonly string F3 = "Desc_F3";
public static readonly string F4 = "Desc_F4";
}
How I can get All Properties name and values from DAL assemby A7 class?
thanks