//Define the Pattern Context Object.
//The Context class (object) is simple class that stores that input data to, and output data from the Element class (object).
public class Context
{
public string Input { get; set; }
public double Output { get; set; }
public Context(string c)
{
Input = c;
Output = 0;
}
}