TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Okada Okada
NA
19
2.9k
How to delete node and sub node in C# in XLM file ?
Jul 2 2018 7:21 AM
How to delete node and sub node in C# in XLM file ?
My XML file contents is this,
<userSettings>
<Calc.Properties.Settings>
<setting name="WindowTop" serializeAs="String">
<value>240</value>
</setting>
<setting name="TableBackground" serializeAs="String">
<value>Transparent</value>
</setting>
<setting name="TableForeground" serializeAs="String">
<value>Opaque</value>
</setting>
</Calc.Properties.Settings>
</userSettings>
and I want to delete
<setting name="TableForeground" serializeAs="String">
<value>Opaque</value>
</setting>
from it. How to do it ?
Reply
Answers (
3
)
How to append changes to XML file using C# [VS2015]
How to secure webservice ?