所以这几天我一直在研究 JSON 文件,只是为了了解 C# 是如何操作 JSON 的。
我需要一些帮助来向 JSON 文件添加属性。我已经想出了如何通过反复试验来编辑值,但是,我认为它会创建我访问该值的路径。事实证明事实并非如此。
这是我目前在访问值 Height 和 Width 方面所做的工作,但是,JSON 中没有“externalSite”“Weblogin”“window”路径
string widthBox = Width.Text.ToString();
string heightBox = Height.Text.ToString();
string CustomSizejson = File.ReadAllText(DownloadConfigFilelocation);
JObject CustomSizeobj = JObject.Parse(CustomSizejson);
CustomSizeobj["externalSite"]["webLogin"]["window"] = "height=" + heightBox + ",width=" + widthBox + ",resizable,scrollbars";
string CustomSizenewJson = CustomSizeobj.ToString();
File.WriteAllText(DownloadConfigFilelocation, CustomSizenewJson);
这几乎是我想要完成并将其附加到 JSON 文件
有人可以帮我解决这个问题吗?谢谢
www说
ABOUTYOU
相关分类