ServiceDescriptionCollection.Remove(ServiceDescription) メソッド

定義

コレクションから、最初に出現する指定した ServiceDescription を削除します。

public:
 void Remove(System::Web::Services::Description::ServiceDescription ^ serviceDescription);
public void Remove (System.Web.Services.Description.ServiceDescription serviceDescription);
member this.Remove : System.Web.Services.Description.ServiceDescription -> unit
Public Sub Remove (serviceDescription As ServiceDescription)

パラメーター

serviceDescription
ServiceDescription

コレクションから削除する ServiceDescription

// Get the index of 'ServiceDescription' object.
int myIndex = myCollection.IndexOf(myServiceDescription2);
// Remove 'ServiceDescription' object from the collection.
myCollection.Remove(myServiceDescription2);
Console.WriteLine("Element at index {0} is removed ", myIndex);
' Get the index of 'ServiceDescription' object.
Dim myIndex As Integer = myCollection.IndexOf(myServiceDescription2)
' Remove 'ServiceDescription' object from the collection.
myCollection.Remove(myServiceDescription2)
Console.WriteLine("Element at index {0} is removed ", myIndex.ToString())

注釈

このメソッドは線形検索を実行します。したがって、平均実行時間は に比例します Count

削除された ServiceDescription に続く要素は、空いたスポットを占有するために上に移動します。

適用対象