FlowControl.ForEachInArr(Array) 方法
定义
获取要在 For Each 循环中循环访问的数组的枚举数。Gets the enumerator for an array being iterated over in a For Each loop.
此 API 支持产品基础结构,不能在代码中直接使用。
public:
static System::Collections::IEnumerator ^ ForEachInArr(Array ^ ary);
public static System.Collections.IEnumerator ForEachInArr (Array ary);
static member ForEachInArr : Array -> System.Collections.IEnumerator
Public Function ForEachInArr (ary As Array) As IEnumerator
Public Shared Function ForEachInArr (ary As Array) As IEnumerator
参数
- ary
- Array
要在 For Each 循环中循环访问的数组。An array being iterated over in a For Each loop.
返回
ary 的枚举数。The enumerator for ary.
注解
此类支持 Visual Basic 编译器,不应在代码中直接使用。This class supports the Visual Basic compiler and is not intended to be used directly from your code.