vote up 0 vote down star

I have seen there are many example in C# version. Same also as DataContractJsonSerializer class in MSDN. Anyone pls help me on VB.net version.

Regards.

flag
1  
Porting C# code to VB.NET is usually straightforward. A converter like this one developerfusion.com/tools/convert/… does a good job. If you have any specific problem then edit your post with more details. – Meta-Knight Nov 3 at 14:03
Indeed - or use "reflector", which can do (limited) translation. – Marc Gravell Nov 3 at 16:52

1 Answer

vote up 0 vote down

Private Sub button1_Click(ByVal sender As Object, ByVal e As EventArgs) Dim ser As New DataContractJsonSerializer(GetType(Product)) Using fs As FileStream = File.OpenRead("c:\jsonText.txt")

            Dim product As Product = TryCast(ser.ReadObject(fs), Product)
            MessageBox.Show("Product Name: " & product.Name)
        End Using
    End Sub
End Class

<Serializable()> _
Public Class Product
    Public Name As String
End Class

End Namespace

Here is the vb.net sample taken from msdn and converted by developerfusion converter

cheers

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.