本文介绍了为VS的typeof的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
以下哪段代码的速度更快?
Which of these pieces of code is faster?
if (obj is ClassA) {}
if (obj.GetType() == typeof(ClassA)) {}
编辑:$ ; b $ b我知道,他们不这样做同样的事情。
I'm aware that they don't do the same thing.
推荐答案
的
第二行,如果(obj.GetType()== typeof运算(ClassA的)){}
,速度更快,对于那些不想读文章。
The second line, if (obj.GetType() == typeof(ClassA)) {}
, is faster, for those that don't want to read the article.
这篇关于为VS的typeof的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!