检查vb.net中NewtonSoft Json是否存在路径

时间:2016-10-02 19:05:31

标签: json vb.net json.net nullreferenceexception

这是一些通用代码;

 Dim serializer as New JsonSerializer()
 Dim decoded = serializer.Deserialize(New JsonTextReader(New StreamReader(New FileStream(jsonFilePath, FileMode.Open, FileAccess.Read))))
 Dim possiblyNull = decoded("test")("path")

如果test.path不存在,则抛出NullReferenceException。我如何在vb.net中使用NewtonSoft.Json检查路径是否存在?我似乎无法在文档或在线搜索中找到任何内容。这似乎是一个相当标准的功能。

0 个答案:

没有答案