Table of Contents

Operator "{0}" does not take operands of type "{1}" and "{2}" (AJTERR10047)

Product(s) Karo.NET Compiler

Description

The specified operator does not take these types as operands.

Operator Valid left operand Corresponding right operand
+ sl.types::string sl.types::string
+ sl.types::number sl.types::number
+ sl.types::number sl.types::float
+ sl.types::float sl.types::number
+ sl.types::float sl.types::float
- sl.types::string sl.types::string
- sl.types::number sl.types::number
- sl.types::number sl.types::float
- sl.types::float sl.types::float
* sl.types::string sl.types::string
* sl.types::number sl.types::number
* sl.types::number sl.types::float
* sl.types::float sl.types::float
/ sl.types::number sl.types::number
/ sl.types::number sl.types::float
/ sl.types::float sl.types::number
/ sl.types::float sl.types::float
&& sl.types::bool sl.types::bool

How can I resolve this error?

Not specified