最佳答案
这些代码中哪一段更快?
if (obj is ClassA) {}
if (obj.GetType() == typeof(ClassA)) {}
编辑: 我知道他们做的不一样。