BinaryExpressionType Énumération
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.
Types d’expressions scalaires qui ont deux expressions en tant qu’enfants.
[System.Serializable]
public enum BinaryExpressionType
[<System.Serializable>]
type BinaryExpressionType =
Public Enum BinaryExpressionType
- Héritage
-
BinaryExpressionType
- Attributs
Champs
Add | 0 | Caractère « + », ajout. |
BitwiseAnd | 5 | Caractère « & », au niveau du bit et. |
BitwiseOr | 6 | Caractère « | », au niveau du bit ou. |
BitwiseXor | 7 | Caractère « ^ », exclusif au niveau du bit ou. |
Concat | 10 | Caractère « || », concaténation. |
Divide | 3 | Caractère « / », division. |
LeftShift | 8 | Caractère «<< », décalage gauche. |
Modulo | 4 | Le caractère « % » renvoie le reste entier d’une division. |
Multiply | 2 | Caractère « * », multiplication. |
RightShift | 9 | Caractère «>> », décalage vers la droite. |
Subtract | 1 | Caractère « - », soustraction. |