how can I let the user make setting in the strategy property like this?
Setting Foo --> A, B or C
The user should be able to choose from a drop-down field. Only one choice should be possible and active which I want to use later as logic for a condition. Multi-choice shouldn't be possible.
I tried by this, but obviously I am missing something because my strategy doesn't show any dropdown field
{
public class ABC : Strategy
{
private Choice userSelection = Choice.A;
// at the end I used this here
#region Global Enums
public enum Choice
{
A,
B,
C
}
#endregion

Comment