According to the documentation in VB6 the Mid function returns a variant, but Mid$ returns a string and apparently this is more efficient.
My questions are :
What simple test can I use to discern the difference in performance ? I tried looking at simple app which did a few string operations, with Perfmon, but there was no discernible difference.
Is it worth worrying about? I've gotten into the habit of using the $-ized functions, but should I recommend everybody on my team to use it as well ?