EnumConditionExpression is used to evaluate a Enum property (of field or variable). Depending on the outcome, the result will then be either Enum1 or Enum2.
public EnumProperty EnumExample1 => EnumProperty(description: "first example");
public EnumProperty EnumExample2 => EnumProperty(description: "second example");
public ReadOnlyEnumProperty EnumResult
{
get
{
return CalculatedEnumProperty(() =>
EnumExample1.IsEqualTo(EnumExample2).IsTrueElse(EnumExample1, EnumExample2));
}
}
Line 9 evaluates if EnumExample1 is equal to EnumExample2.
If so, EnumExample1 will be assigned to the CalculatedEnumProperty EnumResult, otherwise EnumExample2 will be assigned to EnumResult.
Article ID: 269
Created: Thu, Dec 5, 2019
Last Updated: Mon, Jan 13, 2020
Online URL: https://wiki-ai-framework.abstract-it.nl/article/enumconditionexpression-269.html