Hello
The way Internal_GetMethodSelectionMenu is written there is no way to access operators, because it considers any method with IsSpecialName true to be a property.
So the ExecuteFunction action filters them out because of the special name, and the GetProperty action also filters them out because the operators have arguments.
A work-around is to comment out that test.
Hmm..I didn’t thought that people would want to use operators via the reflection tasks to be honest, but I could add them up to show in the Execute Function methods list if that is something needed. (I will use a different (better) way to determine if it’s a property or not).