Partager via


GacInstalled.Copy Méthode

Définition

Crée une copie équivalente de l'objet en cours.

public:
 System::Object ^ Copy();
public object Copy ();
member this.Copy : unit -> obj
Public Function Copy () As Object

Retours

Copie équivalente de GacInstalled.

Exemples

L’exemple de code suivant montre l’utilisation de la Copy méthode . Cet exemple fait partie d’un exemple plus grand fourni pour la GacInstalled classe .

GacInstalled ^ myGacInstalledCopy = 
    dynamic_cast<GacInstalled^>(myGacInstalled->Copy());
bool result = myGacInstalled->Equals( myGacInstalledCopy );
GacInstalled myGacInstalledCopy = 
    (GacInstalled)myGacInstalled.Copy();
bool result = myGacInstalled.Equals(myGacInstalledCopy);
Dim myGacInstalledCopy As GacInstalled = _
    CType(myGacInstalled.Copy(), GacInstalled)
Dim result As Boolean = myGacInstalled.Equals(myGacInstalledCopy)

S’applique à