这是我的 xml 文件数据
<Persons>
<Person>
<Name>john</Name>
</Person>
<Employee>
<Detail>
<Firstname>john</FirstName>
</Detail>
</Employee>
<Student>
<FullName>john</FullName>
</Student>
</Persons>
Run Code Online (Sandbox Code Playgroud)
我想在所有地方将“john”替换为“danny”。
我怎样才能在 c# 中做到这一点?