Hi,

I have no background of C# and .NET and I am stuck at a point, where I want to display a property list from a dynamic string list.
When I define a enum with three fields for example,I can see enum values in my property list.

Code:
public enum MyEnum
        {
            Text1,
            Text2,
            Text3
        };
However, I want to display a dynamic string list instead...