I need to declare a variable inside an if statement. Then I will use it on outside. But as far as I know there is no external variables in C#. But I need to do this.
I have two classes both derived from one class.
base class: Operand
derived classes: NormalOperand SpecialOperand
bool normal
declared somewhere
if(normal)
NormalOperand o = stack.Pop() as NormalOperand;
else
SpecialOperand o = stack.Pop() as SpecialOperand;
I dont want to deal this differences below. Is there any hack to do that. Or I have to deal everywhere I do something related to this?