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.
However, I want to display a dynamic string list instead of the enum values. Is there a way that I can convert my string list to enum and use it?
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
};