type.IsArray和type Is GetType(Array)等效吗?
一个变量Type如果type.IsArray=True,有可能type Is GetType(Array)=Flase吗?
当然有可能
type.IsArray的意思是type是数组吗,此时不关心到底是什么类型的数组
type Is GetType(Array)的意思是type的类型是Array吗,此时区分到底是什么类型的数组。