Getting error while Join two table

Error coming “End of expression expected”

Please help me out to if changes required in my code.

I am using below below Code

From t1 In Applied.AsEnumerable() _
Join t2 In Paid.AsEnumerable() _
On t1.Field(Of Integer)(“ProposalNo”) Equals _
t2.Field(Of Integer)(“Proposal No”) _
Select New With _
{ _
.Paid=t1.Field(Of Integer)(“ProposalNo”)
};

Try to remove semicolon at the end

thanks for your guidance
But now still error occur

Option Strict on disallows implicit conversion

Please help

Without workflow is very hard to debug your errors. Type of variable in Assign?