这是一些通用代码;
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检查路径是否存在?我似乎无法在文档或在线搜索中找到任何内容。这似乎是一个相当标准的功能。