Assignment PV178: Programming for .NET Framework C# 3.0 ­ Seminar Vojtˇech Forejt, forejt@fi.muni.cz Martin Osovsk´y, osovsky@ics.muni.cz Faculty of Informatics and Institute of Computer Science Masaryk University May 7, 2009 Assignment Assignment Create a console application that reads arithmetic expression with variables, asks for values of the variables, and outputs the evaluated expression Use expression trees to internally store the expression Notes You may require the input to be in (reverse) Polish notation. This will save you some coding. Classes and methods that you may need: Expression, BinaryExpression, ParameterExpression, LambdaExpression, char.IsDigit(), char.IsLetter(), LambdaExpression.Compile(), Delegate.DynamicInvoke()