Difference between get (a ref) and get (a copy)

Are they they same speed to do operations on? I have a situation where I am reading from arrays, but not altering them, and writing to a new array (with new data, not same data).

If they are the same speed, I would then assume it is better to use “ref” to avoid duplicating memory usage?