Hi Folks,<br>Is there a way to write a C# class that has operators that work in Python?&nbsp; Currently, if I have a class with a method like the following:<br><br>public static BDDNode operator +(BDDNode A, BDDNode B)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return A.BDDOr(B);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br><br>and try to add two BDDNode Objects in Python ith the &quot;+&quot; operator, I get the following:<br><br>TypeError: unsupported operand type(s) for +: &#39;BDDNode&#39; and &#39;BDDNode&#39;
<br><br>Any way around this?<br><br>Thanks,<br>-Justin<br>