I have the following code. I constructed an expression tree and I am stuck parsing it to find the result ...You will find the details within my code...public enum OpertaionType { add, sub, div, mul}
public class Node {
public Node(Node lhs, Node rhs...