From: "Dan Stevens (IAmAI)" Date: 2007-02-04T03:52:11+09:00 Subject: Enumerated Types As part of a solution, I wish the value of an attribute to be one of a finite set of values, in other words I believe I want an 'enumerated type'. I've look at the 'Enumerable' and 'Enumerator' class and they appear to me to be unrelated to what I wish to achieve (correct me if I'm wrong). I could do the traditional method of named constants with integer values but I can't help feeling that there must be a class or some nice method of doing this. Any advice would be appreciated.