Hi,
often I have situation that I need to create TFormula
and read the properties of it, like number of parameters, but this is not yet time to name in. Name is created dynamically and later in the code.
But currently one has to name the TFormula
object. Is there smart way to have unnamed formulas?
I see two ways:
- put empty string
""
as formula name; or - put random-generated string as a name, and later rename it.
but I am not sure whether the first solution will not break somewhere later if I have couple ""
named formulas in the code.