我有以下内容:
Option Strict On
Public NotInheritable Class Root
Public Overrides Function Equals(obj As Object) As Boolean
If TypeOf obj Is Root Then
Dim rt As Root = DirectCast(obj, Root)
Return rt.container.Equals(Me.container) AndAlso
rt.question.Equals(Me.question)
End If
Return False
End Function
End Class
FxCop正在给我这个警告:
Warning, Certainty 95, for DoNotCastUnnecessarily
{
Target : #Equals(System.Object) (IntrospectionTargetMember)
Location : file:///C:/..../Root.vb<46> (String)
Resolution : "'obj', a parameter, is cast to type 'Root' multiple
times in method 'Root.Equals(Object)'. Cache the result
of the 'as' operator or direct cast in order to eliminate
the redundant castclass instruction."
Help : http://msdn2.microsoft.com/library/ms182271(VS.90).aspx (String)
Category : Microsoft.Performance (String)
CheckId : CA1800 (String)
RuleFile : Performance Rules (String)
Info : "Avoid duplicate casts where possible, since there is
a cost associated with them."
Created : 4/21/2015 8:45:17 PM (DateTime)
LastSeen : 4/21/2015 8:55:16 PM (DateTime)
Status : Active (MessageStatus)
Fix Category : NonBreaking (FixCategories)
}
我做错了什么?我检查类型,如果它是相同的,则进行投射。
答案 0 :(得分:6)
因为您可以将演员表重写为
Dim rt As String = TryCast(obj, Root)
If Not (rt is Nohting) Then
哪个效果比is
和DirectCast
答案 1 :(得分:3)
使用的语言似乎是针对C#量身定制的,但它基本上要求您使用TryCast
代替Is
Dim rt As Root = TryCast(obj, Root)
If Not (rt Is Nothing) Then
' code
End If
原因是这在内部执行相当于TryCast
,所以努力重复。