Effects of multiple "get" references?

So just an odd ball question here.

I’ve seen people who “get” a new reference to a variable every time they need it. This keeps the graph cleaner. Then I’ve seen other people who say that having too many “get” references affects performance.

Does anybody actually “KNOW” whether it affects performance or not?

Thanks

There is no difference, it will compile to identical byte code.

1 Like

That’s what I figured. Just wanted to confirm it.

Thanks.