D
Dmitry Martynov
Consider I have the following construction "if(x is T) ...". How much this
test cost? And I wonder how it is implemented. Can I gain in performace if I
introduce virtual methods like "bool isIt...()" in my base class and then
call them instead of using is-operator?
test cost? And I wonder how it is implemented. Can I gain in performace if I
introduce virtual methods like "bool isIt...()" in my base class and then
call them instead of using is-operator?