Initial Code Commit
A working version of the calculator. Very simple.
This commit is contained in:
parent
500118c4fc
commit
d24a7b400a
18 changed files with 6071 additions and 0 deletions
24
src/VariableItem.cs
Normal file
24
src/VariableItem.cs
Normal 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
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue