public string ToFunctionName() { string ret = Operation; if (FirstOperand != string.Empty) { ret += "_" + FirstOperand.Replace("(", "MEM_").Replace(")", "").Replace("+", "_"); if (SecondOperand != string.Empty) { ret += "_" + SecondOperand.Replace("(", "MEM_").Replace(")", "").Replace("+", "_"); } } return(ret); }