System.Linq.Expressions.SwitchCase
namespace System.Linq.Expressions
{
public sealed class SwitchCase
{
public Expression Body { get; }
public ReadOnlyCollection<Expression> TestValues { get; }
public SwitchCase Update(IEnumerable<Expression> testValues, Expression body);
}
}