using shared function

Jorge Rizzi

New member
Joined
Jun 20, 2019
Messages
2
Programming Experience
10+
Hello people.

Thinking about system performance, when should I use a shared function?

I hope someone can help me.
 
Last edited:
English is the language of this forum. Please edit your posts to English. Thank you.
 
Thinking about system performance, when should I use a shared function?
That is a complete non-sequitur. There's no reason to consider system performance when determining whether to declare a method Shared. A Shared member is a member of a type rather than a member of an instance of a type. You should declare a member Shared when it is logical for it to be a member of a type and not otherwise.
 
Back
Top