Returns an iterator that specifies the first element in the Vector.
virtual Windows::Foundation::Collections::IIterator <T>^ First();
A convenient way to hold the iterator returned by First() is to assign the return value to a variable that is declared with the auto type deduction keyword. For example, auto x = myVector->First();.