Are arrays of value types cosidered reference types themselves?
e.g., considering:
int [] array = new int[10];
is 'array' a reference type or a value type?

Thanks.
stephen