誰もこれを見たことがありますか?
Public Shared Function IsAvailableByCampaignId(ByVal cn As SqlConnection, ByVal tr As SqlTransaction, ByVal campaignId As Integer, ByRef dest As PricingThresholds) As Boolean
Dim retObj = ItemTypes.PricingThresholds.GetThresholds(cn, tr, campaignId)
If retObj IsNot Nothing Then
dest = New PricingThresholds(retObj)
End If
Dim retVal As Boolean = retObj IsNot Nothing
Return retVal
End Function
インナーに電話したら
Dim retObj = ItemTypes.PricingThresholds.GetThresholds(cn, tr, campaignId)
null 以外または何もない retObj を取得しますが、それを使用して、返す必要がある適切な型である新しい PricingThresholds を作成し、有効な戻り型オブジェクトの作成に成功しましたが、外部から戻ってきました渡されるパラメーター dest を呼び出しByRef
ます。値はなく、何もないか null です。
VBが機能していないようです。
違う方法で返せると思います。