Hi
I have downloaded json.net. and added the dll file by clicking Add Reference. The dll file is now appearing in the bin folder. Now in the code I have tried calling the functions from Json.net
Imports Newtonsoft.Json.JsonReader
Partial Class _Default
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
End Sub
End Class
I am unable to call any functions.
Even when I write Newtonsoft.Json.JsonReader
. the function in not appearing.
Is there anything else I am missing?
Thanks