if(operatorStack.Peek() = '*')
{
//lowerPrecedence = true;
strPostfix += operatorStack.Pop();
}
OK I could really use some help here, I've tried this and other forums, and with all the superprogrammers we have out there no one will help me out on this.....
Why am I getting a ": The left-hand side of an assignment must be a variable, property or indexer" error? I understand that its probably trying to assign the character to a peek operation, rather than testing the condition. Ive tried using "==" but that doesn't help either. Can ANYONE give me some insight???????????????