Specifically I need to know how to convert this section?
Public ReadOnly Property getFmdToVerify() As List(Of Fmd)
Get
Return FmdToVerify
End Get
So this line of code works:-
vResult = Comparison.Identify(result3.Data, 0, getFmdToVerify, 21474, 5)
I have already converted this line:-
Private FmdToVerify As List(Of Fmd) = New List(Of Fmd)
to
01 FmdToVerify type System.Collections.Generic.List[type DPUruNet.Fmd].
And this line:-
vResult = Comparison.Identify(result3.Data, 0, getFmdToVerify, 21474, 5)
to
set vResult = type DPUruNet.Comparison::Identify(result3::Data, 0, getFmdToVerify, 21474, 5)
But I dont know how to convert "getFmdToVerify" bit.
Is there any one that can assist pls.