DependencyCollection.GetEnumerator 方法
Gets an enumerator that can iterate through the list of objects.
命名空间: Microsoft.SqlServer.Management.Smo
程序集: Microsoft.SqlServer.Smo(在 Microsoft.SqlServer.Smo.dll 中)
语法
声明
Public Function GetEnumerator As IEnumerator(Of DependencyCollectionNode)
用法
Dim instance As DependencyCollection
Dim returnValue As IEnumerator(Of DependencyCollectionNode)
returnValue = instance.GetEnumerator()
public IEnumerator<DependencyCollectionNode> GetEnumerator()
public:
virtual IEnumerator<DependencyCollectionNode^>^ GetEnumerator() sealed
abstract GetEnumerator : unit -> IEnumerator<DependencyCollectionNode>
override GetEnumerator : unit -> IEnumerator<DependencyCollectionNode>
public final function GetEnumerator() : IEnumerator<DependencyCollectionNode>
返回值
类型:System.Collections.Generic.IEnumerator<DependencyCollectionNode>
An IEnumerator object value that can be used to iterate through the collection.
实现
IEnumerable<T>.GetEnumerator()