Operators

SSharp S# API

DropDown image DropDownHover image Collapse image Expand image CollapseAll image ExpandAll image Copy image CopyHover image

a = true;

b = false;

 

c = a | b;

 

Test.IsTrue(c);

 

c = a & b;

 

Test.IsTrue(!c);

 

a = 2d;

c = a is double;

 

Test.IsTrue(c);