Kombinieren zwei Ausdrücke (Expression >)

Post a reply

Smilies
:) :( :oops: :chelo: :roll: :wink: :muza: :sorry: :angel: :read: *x) :clever:
View more smilies

BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Kombinieren zwei Ausdrücke (Expression >)

by Anonymous » 01 Jul 2025, 11:57

Ich habe zwei Ausdrücke vom Typ Ausdruck und ich möchte das oder, oder nicht von diesen und einen neuen Ausdruck desselben Typs erhalten.

Code: Select all

Expression expr1;
Expression expr2;

...

//how to do this (the code below will obviously not work)
Expression andExpression = expr AND expr2

Top