Example #1
0
        private IVariable OnVariableMissing(string name)
        {
            var args = new VariableEventArgs(name);

            this.VariableMissing?.Invoke(this, args);

            return(args.Variable);
        }
Example #2
0
        private void OnVariableRemoved(IVariable variable)
        {
            var args = new VariableEventArgs(variable);

            this.VariableRemoved?.Invoke(this, args);
        }