Operators.AddObject(Object, Object) Méthode
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 l’opérateur Visual Basic addition (+).
Cette API prend en charge l'infrastructure du produit et n'est pas destinée à être utilisée directement à partir de votre code.
public:
static System::Object ^ AddObject(System::Object ^ Left, System::Object ^ Right);
public static object AddObject(object Left, object Right);
[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("The object types cannot be statically analyzed so their operators may be trimmed")]
public static object? AddObject(object? Left, object? Right);
public static object? AddObject(object? Left, object? Right);
static member AddObject : obj * obj -> obj
[<System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("The object types cannot be statically analyzed so their operators may be trimmed")>]
static member AddObject : obj * obj -> obj
Public Shared Function AddObject (Left As Object, Right As Object) As Object
Paramètres
- Left
- Object
Obligatoire. Toute expression numérique.
- Right
- Object
Obligatoire. Toute expression numérique.
Retours
Somme de Left et Right.
- Attributs
Remarques
Cette classe prend en charge le compilateur Visual Basic et n’est pas destinée à être utilisée directement à partir de votre code.
S’applique à
Voir aussi
- opérateur + (Visual Basic)