Where can I find information on the Get, Set and Address methods for multidimensional System.Array instances in .NET?

前端 未结 3 1500
予麋鹿
予麋鹿 2021-01-18 06:37

System.Array serves as the base class for all arrays in the Common Language Runtime (CLR). According to this article:

For each concrete array type, [t

3条回答
  •  孤街浪徒
    2021-01-18 06:55

    I'm not sure if it will address your very specific question but a great text on the subject (among others) is CLR via C#. It gets very in-depth for many of the topics you're interested in and spends a lot of time with the disassembler looking at the inner workings of many base .NET types including arrays. Definitely worth checking out.

提交回复
热议问题