M
M. Simioni
Perhaps it is a stupid question, but i'm asking you if there is a
difference between using
Imports this.is.a.namespace
....
genericfunction("blablabla")
and directly using in the code
this.is.a.namespace.genericfunction("blablabla")
There are differences between the two piece of codes, about
optimization or something else ? Or they have the same behaviour?
For example, i was thinking if it's good to use imports if i use many
functions of a specific namespace, and directly call a function if i
use namespace's functions only a few times.
Thank you in advance,
Marco
difference between using
Imports this.is.a.namespace
....
genericfunction("blablabla")
and directly using in the code
this.is.a.namespace.genericfunction("blablabla")
There are differences between the two piece of codes, about
optimization or something else ? Or they have the same behaviour?
For example, i was thinking if it's good to use imports if i use many
functions of a specific namespace, and directly call a function if i
use namespace's functions only a few times.
Thank you in advance,
Marco