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; }
}
}
_______________________________________________
Mono-list maillist - [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list
