//Define the Context Object.

//The Context class (object) is a simple class that stores that input data to be used by the Element base class (object).
public class Context
{
public string Input { get; set; }

public Context(string c)
{
Input = c;
}
}