If I had code like this:
Public Module Global_Variables
Public Stuff as string
End Module
Public Class Stuff_Doer
Me.TextBox1.Text = Global_Variables.Stuff
End Class
Would it be more efficient to do this:
Public Module Global_Variables
Public Stuff as string
End Module
Public Class Stuff_Doer
Me.TextBox1.Text = Stuff
End Class
Or would it be the same as the program would just it behind the scenes anyway?