DataDictionary.Interpreter.Statement.VariableUpdateStatement.UpdateStatements C# (CSharp) Méthode

UpdateStatements() public méthode

Provides the list of update statements induced by this statement
public UpdateStatements ( List retVal ) : void
retVal List the list to fill
Résultat void
        public override void UpdateStatements(List<VariableUpdateStatement> retVal)
        {
            retVal.Add(this);
        }