Struct GeoArray<T>
Represents a geometry coordinates array
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Core.dll
Syntax
[System.Runtime.CompilerServices.IsReadOnly]
public struct GeoArray<T> : System.Collections.Generic.IEnumerable<T>, System.Collections.Generic.IReadOnlyCollection<T>, System.Collections.Generic.IReadOnlyList<T>
Type Parameters
|
T
The type of the value. |
Properties
Count
Returns the size of the array.
Declaration
public int Count { get; }
Property Value
|
System.Int32
|
Item[Int32]
Returns a value at the provided index.
Declaration
public T this[int index] { get; }
Parameters
|
System.Int32
index
The index to retrieve the value from. |
Property Value
|
T
|
Methods
GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
public Azure.Core.GeoJson.GeoArray<T>.Enumerator GetEnumerator ();
Returns
|
GeoArray<T>.Enumerator
An enumerator that can be used to iterate through the collection. |
Explicit Interface Implementations
IEnumerable<T>.GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
System.Collections.Generic.IEnumerator<T> IEnumerable<T>.GetEnumerator ();
Returns
|
System.Collections.Generic.IEnumerator<T>
An enumerator that can be used to iterate through the collection. |
IEnumerable.GetEnumerator()
Returns an enumerator that iterates through a collection.
Declaration
System.Collections.IEnumerator IEnumerable.GetEnumerator ();
Returns
|
System.Collections.IEnumerator
An System.Collections.IEnumerator object that can be used to iterate through the collection. |