Initial Code Commit

A working version of the calculator. Very simple.
This commit is contained in:
Jordan Wages 2020-06-18 20:58:59 -04:00
commit d24a7b400a
18 changed files with 6071 additions and 0 deletions

24
src/VariableItem.cs Normal file
View file

@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
namespace AdvancedCalculator
{
public class VariableItem
{
#region Properties
public string VariableName { get; set; }
public string Value { get; set; }
public Visibility ExpressionVisibility { get; set; }
public string ExpressionComputation { get; set; }
#endregion
}
}