While the value returned by Type.FullName and the C# type identifier sometimes happen to be the same, this is not guaranteed. Keep in mind that Type.FullName returns the same value regardless of what CLI language it is called from, be it C#, VB.NET, Oxygene or anything else.
For multidimensional and jagged arrays, C# syntax lists the indices in the order they are written later on, while reflection syntax returns something that matches the logical structure of the array. And a (C#) string[,][,,][,,,] is, after all, a value of type string, thereof a 4-dimensional array (i.e. string[,,,]), thereof a 3-dimensional array (i.e. string[,,,][,,]) and thereof a 2-dimensional array (i.e. string[,,,][,,][,]).
Rather than relying on the reflection syntax name returned by FullName, you might want to examine the properties of the Type class when analyzing types. Information such as the number of dimensions or the generic arguments can be retrieved from there.
When constructing types, you can also use methods such as MakeArrayType or MakeGenericType to create complex types at runtime without constructing a string that contains the ingredients for the new types.
Some of the contents of this answer was pointed out by Marc Gravell - thank you!
string[,][,,][,,,]is, after all, a value of typestring, thereof a 4-dimensional array (i.e.string[,,,]), thereof a 3-dimensional array (i.e.string[,,,][,,]) and thereof a 2-dimensional array (i.e.string[,,,][,,][,]). – O. R. Mapper Jul 30 '12 at 11:37Outer.InnerbutOuter+Innerinstead, and generics aren'tFoo<,,>butFoo`3instead. – Marc Gravell♦ Jul 30 '12 at 11:45