views:

12

answers:

0

I have a Silverlight LOB application that has a page that will need to be visited 4 times before moving on to the next page. I want a data structure to hold a marker to the point in that sequence. I might render a display to show where you are like this: o---●---o---o

I tried an enum, but I need to associate each point with small int value that is then used to located files via HTTP. This seems so simple but if I start putting if blocks and magic variable values everywhere that is messy, so I wanted to see what people here had to say.