In this previous question, I found out that in F # a array<'T> does not match System.Array .
VS tells me that array<'T> inherits from System.Array and has the full name Microsoft.FSharp.Core.array<_> and some additional interfaces.
However, MSDN says that array<'T> is an abbreviation of type System.Array . And that it has the designation arr.[i] for receiving and setting elements.
So, for my lesson, is there an array<'T> type abbreviation that includes type extensions and additional interfaces? Where is the best place to see it?
source share