다음을 통해 공유


ServiceDescriptionFormatExtensionCollection.IndexOf(Object) 메서드

정의

컬렉션에서 지정된 ServiceDescriptionFormatExtension을 검색하여 처음 나오는 인스턴스의 인덱스(0부터 시작)를 반환합니다.

public:
 int IndexOf(System::Object ^ extension);
public int IndexOf (object extension);
member this.IndexOf : obj -> int
Public Function IndexOf (extension As Object) As Integer

매개 변수

extension
Object

컬렉션에서 검색할 ServiceDescriptionFormatExtension입니다.

반환

Int32

지정된 ServiceDescriptionFormatExtension의 인덱스(0부터 시작)이거나, 해당 요소가 컬렉션에 없으면 -1입니다.

예제

// Get index of a 'myFormatExtension' object in collection.
Console::WriteLine( "Index of 'myFormatExtensionObject' is {0} in collection.", myCollection->IndexOf( myFormatExtensionObject ) );
// Get index of a 'myFormatExtension' object in collection.
Console.WriteLine("Index of 'myFormatExtensionObject' is "+
   "{0} in collection.",
   myCollection.IndexOf(myFormatExtensionObject).ToString());
' Get index of a 'myFormatExtension' object in collection.
Console.WriteLine("Index of 'myFormatExtensionObject' is " + _
     "{0} in collection.", myCollection.IndexOf(myFormatExtensionObject).ToString())

적용 대상