ComponentOne FinancialChart for WPF
C1.WPF Namespace / C1OrderedSet Class / GetEnumerator Method



In This Topic
    GetEnumerator Method
    In This Topic
    Returns an enumerator that iterates through the collection.
    Syntax
    'Declaration
     
    
    Public Function GetEnumerator() As IEnumerator(Of Integer)
    'Usage
     
    
    Dim instance As C1OrderedSet
    Dim value As IEnumerator(Of Integer)
     
    value = instance.GetEnumerator()
    public IEnumerator<int> GetEnumerator()
    public:
    IEnumerator<int>^ GetEnumerator(); 

    Return Value

    A IEnumerator that can be used to iterate through the collection.
    See Also