I have able to create a function that will perform Reverse Polish notation. The structure of the method is fine the two issues I am running into is how to grab the formula the user inputs in textBox1 and display the answer(formula = answer) on textBox2. I have assigned to textBox1 the variable rpnValue but it gives an error message A field initializer cannot reference the non-static field, method, or property 'modified_rpn.Form1.textBox1'. So once again how can I grab the formula the user inputs in textBox1 and display the answer(formula = answer) on the multiline `textBox2?
Code
namespace rpn
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
string rpnValue = textBox1.Text;
private void RPNCalc(rpnValue)
{
Stack<int> stackCreated = new Stack<int>();
try
{
var tokens = rpnValue.Replace("(", " ").Replace(")", " ")
.Split().Where(s => !String.IsNullOrWhiteSpace(s));
foreach (var t in tokens)
{
try
{
stackCreated.Push(Convert.ToInt32(t));
}
catch
{
int store1 = stackCreated.Pop();
int store2 = stackCreated.Pop();
switch (t)
{
case "+": store2 += store1; break;
case "-": store2 -= store1; break;
case "*": store2 *= store1; break;
case "/": store2 /= store1; break;
case "%": store2 %= store1; break;
case "^": store2 = (int)Math.Pow(store1, store2); break;
default: throw new Exception();
}
stackCreated.Push(store2);
}
}
if (stackCreated.Count != 1)
MessageBox.Show("Please check the input");
else
textBox1.Text = stackCreated.Pop().ToString();
}
catch
{
MessageBox.Show("Please check the input");
}
textBox2.AppendText(rpnValue);
textBox1.Clear();
}
private void button1_Click(object sender, EventArgs e)
{
RPNCalc(textBox1, textBox2);
}
}
}

You would need to move this line:
inside a method or a function. You have it outside a method or function and you cannot do that.