Método Reset
Sets the enumerator to its initial position, which is before the first element in the collection.
Namespace: Microsoft.SqlServer.Dts.Tasks.Exec80PackageTask
Assembly: Microsoft.SqlServer.Exec80PackageTask (em Microsoft.SqlServer.Exec80PackageTask.dll)
Sintaxe
'Declaração
Public Sub Reset
'Uso
Dim instance As PkgVariableEnumerator
instance.Reset()
public void Reset()
public:
virtual void Reset() sealed
abstract Reset : unit -> unit
override Reset : unit -> unit
public final function Reset()
Implementa
Comentários
Reset moves the enumerator to the beginning of the collection, before the first element. After Reset, MoveNext must be called to advance the enumerator to the first element of the collection before reading the value of Current.
Consulte também