I am implementing IListSource that requires a method GetList() with the following signature:
IList GetList()
I am using .NET framework 2 and I'm wanting to return an object that implements IList as follows:
public System.Collections.IList GetList()
{
return this._mydata; // …