How do i use AND in a Statement

Сonversation on different topics
Post Reply
luke
Posts: 42
Joined: Fri Jun 03, 2022 6:57 am

How do i use AND in a Statement

Post by luke »

{ Animal.Dog } == {Var} And {Animal.Cat} == {Var2}
Kirill Klimenkov

Re: How do i use AND in a Statement

Post by Kirill Klimenkov »

Hello.

And is the VB.NET operator. What script language are you using (C#, VB.NET)?
Note that the whole expression should be in the curly brackets.

Thank you.
luke
Posts: 42
Joined: Fri Jun 03, 2022 6:57 am

Re: How do i use AND in a Statement

Post by luke »

thanks, Im using C#
Kirill Klimenkov

Re: How do i use AND in a Statement

Post by Kirill Klimenkov »

Hello.

You could use the conditional logical operator.

Code: Select all

{Animal.Dog == Var && Animal.Cat == Var2}
Thank you.
Post Reply