Jump to: navigation, search

Changes


EvalExpression

59 bytes added, 13:56, 7 January 2021
<tab name="Xamarin">
None available yet.
</tab>
</tabs>
<tab name="Xamarin">
None available yet.
</tab>
</tabs>
<tab name="Xamarin">
None available yet.
</tab>
</tabs>
== Conditional Statement ==
If / Or statements can be evaluated using the C# syntax P0 ? P1 : P2.
In this case, if the result of the P0 expression is True, P1 will be effected. Otherwise, P2 will be.
<tabs>
<tab name="UWP">
If / Or statements can be evaluated using the C# syntax P0 ? P1 : P2.
In this case, if the result of the P0 expression is True, P1 will be effected. Otherwise, P2 will be.
<source lang = "xml">
<Controls:EvalExpression x:Name="InitialiseParameterWhenNull" Expression="(P0==null) ? P1 : P2">
</tab>
If / Or statements are being evaluated using the C# syntax (P0==0 || P0==null) ? P1 : P2.
In this case, if the result of the P0 expression is zero or null, P1 will be effected. Otherwise, P2 will be.
<tab name="Xamarin">
If / Or statements can also be evaluated using the C# syntax (P0==0 || P0==null) ? P1 : P2.
In this case, if the result of the P0 expression is zero or null, P1 will be effected. Otherwise, P2 will be.
<source lang = "xml">
<Controls:EvalExpression x:Name="WFcolors_Issued" Expression="(P0==0 || P0==null) ? P1 : P2">