[Mono-list] Template question

Daniel Carrera dcarrera@math.toronto.edu
Thu, 18 Apr 2002 17:40:11 -0400 (EDT)


How do you make the template for the following property?:

public DataGridColumnStyle this[int] {get;}


I'm thinking:

public DataGridColumnStyle this[int] {
	get { throw NotImplementedException(); }
}

I'm not sure of what to do with the 'this[int]' part.

Thanks,
Daniel.