M
Manco
I understand the declaring an array:
int[] arr = new int[5]{1,2,3,4,5};
this object will be derived from System.Array, yet when I examine the MSIL,
it's not quite clear, I don't see an extends attribute.
int[] arr = new int[5]{1,2,3,4,5};
this object will be derived from System.Array, yet when I examine the MSIL,
it's not quite clear, I don't see an extends attribute.