A property in some class shows up in the object browser as follows:
public System.Collections.Generic.ICollection<DataSource> DataSources {
get; }
How do I access this property. I'm not sure what the <DataSource>
implies. How do I define the variable that this property gets set to?
Ciaran O''Donnell - 09 Nov 2006 12:22 GMT
The <DataSource> is syntax for generics. Have a look at this MSDN
introduction to generics:
http://msdn2.microsoft.com/en-us/0x6a29h6.aspx
HTH
Ciaran O'Donnell
> A property in some class shows up in the object browser as follows:
>
[quoted text clipped - 4 lines]
> How do I access this property. I'm not sure what the <DataSource>
> implies. How do I define the variable that this property gets set to?