gpt4 book ai didi

c# - 变量不保存在对象中

转载 作者:太空宇宙 更新时间:2023-11-03 20:20:00 25 4
gpt4 key购买 nike

<分区>

所以我正在从 XML 读取文件,使用调试输出效果很好。

while (reader.Read())
{
if (reader.NodeType == XmlNodeType.Element && reader.Name == "Note")
{
Note n = new Note();

reader.ReadToFollowing("NoteTitle");
string s = reader.ReadElementContentAsString();
n.NoteTitle = s;
Debug.WriteLine("s " + s);
Debug.WriteLine("n " + n.NoteTitle);
}
}

我的问题是

n.NoteTitle = s;

不执行任何操作,因此第二个调试仅打印“n”,而第一个调试正确打印 "s Notetitle1"

我的问题是什么?

编辑:抱歉,NoteTitle 的实现:

private string _noteTitle = string.Empty;
public string NoteTitle
{
get { return this._noteTitle; }
set { RaisePropertyChanged("NoteTitle"); }
}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com