Interface IReadOnlyCollection<T>
A generic read-only collection interface
Inherited Members
System.Collections.Generic.IEnumerable<T>.GetEnumerator()
Namespace: OSGeo.MapGuide.ObjectModels.RuntimeMap
Assembly: OSGeo.MapGuide.ObjectModels.dll
Syntax
public interface IReadOnlyCollection<T> : IEnumerable<T>, IEnumerable
Type Parameters
| Name | Description |
|---|---|
| T |
Properties
| Improve this Doc View SourceCount
Gets the number of items in this collection
Declaration
int Count { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
Item[Int32]
Gets the item at the given index
Declaration
T this[int index] { get; }
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | index |
Property Value
| Type | Description |
|---|---|
| T |