Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • Thanks. I'm already having the formula as a list like new object[] {p1, "OR", p2, "AND", p3, "AND", p4, "OR", p5} and solved it now by first finding all a AND b list-tripple entries, calculating them, replacing the 3 entries by the result, repeating until no more ANDs are present. Then doing the same with a OR b. This worked in my examples. Commented Dec 27, 2019 at 15:01
  • Does C# not have a Set type (interface with supporting classes)? I would be shocked to discover this, since it’s Dictionary support is quite good Commented Dec 29, 2019 at 14:26