C# - Get values of static properties from static class
- by JamesW
I'm trying to loop through some static properties in a simple static class in order to populate a combo box with their values, but am having difficulties.
Here is the simple class:
public static MyStaticClass()
{
public static string property1 = "NumberOne";
public static string property2 = "NumberTwo";
public static string property3…