第一种方法
var isA = oldObject.GetType() == typeof(Dictionary<string, string>)
第二种方法
var isB = oldObject.GetType().FullName.IndexOf("Dictionary") > 0;
第三种
var isC = oldObject is Dictionary<string, string>;
转载于:https://www.cnblogs.com/ztf_yh/p/10583613.html