Option Strict On disallows late binding
问题 Can someone help me fix this error? Option Strict On disallows late binding Here's the code that's causing the error: Dim SF6StdData As BindingSource = New BindingSource() ' ... If StrComp(SF6StdData.Current("O2AreaCts").ToString, "") = 0 Then AreaCts(3) = 0 Else AreaCts(3) = Convert.ToDouble(SF6StdData.Current("O2AreaCts").ToString) End If I need to rewrite the code so it will not have any errors. I know I could fix this by setting Option Strict to Off in the project properties, but I really