Partager via


Assembly.GetEntryAssembly Méthode

Définition

Obtient l’assembly d’entrée pour l’application en cours d’exécution.

public:
 static System::Reflection::Assembly ^ GetEntryAssembly();
public static System.Reflection.Assembly? GetEntryAssembly ();
public static System.Reflection.Assembly GetEntryAssembly ();
static member GetEntryAssembly : unit -> System.Reflection.Assembly
Public Shared Function GetEntryAssembly () As Assembly

Retours

Assembly d’entrée pour l’application en cours d’exécution. Peut retourner null quand il est appelé à partir de code non managé.

Remarques

.NET Framework uniquement : Dans le domaine d’application par défaut, cette méthode retourne l’exécutable du processus. Dans d’autres domaines d’application, cette méthode retourne le premier exécutable exécuté par ExecuteAssembly.

La GetEntryAssembly méthode peut retourner null lorsqu’un assembly managé a été chargé à partir d’une application non managée. Par exemple, si une application non managée crée une instance d’un composant COM écrit en C#, un appel à la GetEntryAssembly méthode à partir du composant C# retourne null, car le point d’entrée du processus était du code non managé plutôt qu’un assembly managé.

S’applique à