hello, > maybe anyone of you can help me with this. Is it possible to write > properties which uses indexers? use this: class A { object [] o; public object this [int i] { get { return o [i]; } set { o[i] = value; } } }