Hi all,
There are two properties in the CollectionBase class. The documentation
says
"The On* methods are invoked only on the instance returned by the List
property, but not on the instance returned by the InnerList property."
I tried find the catch here... but both the property intances access the On*
methods.. .they are called when I add elements on the returned instances !!!
what is the the type of invocation mentioned in the documentation ????
any ideas ??
regards
saju - 19 Oct 2007 14:25 GMT
sloan - 19 Oct 2007 15:27 GMT
Are you using 1.1 or 2.0.
The best way to do a collection 2.0 (IMHO) is something like this
public class Employee
{
//implement here
}
public class EmployeeCollection : List <Employee>
{
//and yeah, that's it...you're done
}
> Hi all,
> There are two properties in the CollectionBase class. The documentation
[quoted text clipped - 9 lines]
>
> regards