I searched here and on the net but no answer.
The reason I ask is, since F# conventions seems like they favor noncapital letters, using BCL types with Pascal conventions look weird in F#, as in:
let stringD = String.Join(" ",[| stringA; stringB |])
Seems like it would be more in the spirit of F# like this:
let stringD = string.join(" ",[| stringA; stringB |])