Type.EmptyTypes Champ
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Représente un tableau vide du type Type. Ce champ est en lecture seule.
public: static initonly cli::array <Type ^> ^ EmptyTypes;
public static readonly Type[] EmptyTypes;
staticval mutable EmptyTypes : Type[]
Public Shared ReadOnly EmptyTypes As Type()
Valeur de champ
- Type[]
Exemples
L’exemple de code suivant montre le EmptyTypes
champ utilisé dans l’une des GetConstructor
méthodes pour obtenir un constructeur qui ne prend aucun paramètre.
cInfo = type->GetConstructor( BindingFlags::ExactBinding, nullptr,
Type::EmptyTypes, nullptr );
cInfo = type.GetConstructor (BindingFlags.ExactBinding, null,
Type.EmptyTypes, null);
cInfo = type.GetConstructor(BindingFlags.ExactBinding, _
Nothing, Type.EmptyTypes, Nothing)