I have a class that I want to use to store \"properties\" for another class. These properties simply have a name and a value. Ideally, what I would like is to be able to add
public class TypedProperty : Property { public T TypedValue { get { return (T)(object)base.Value; } set { base.Value = value.ToString();} } }
I using converting via an object. It is a little bit simpler.