I want to remove a specific value from the following XDocument structure:
<plist version="1.0">
<dict>
<key>Main</key>
<array>
    <dict>
        <key>Password</key>
        <string>*********</string>
        <key>Username</key>
        <string>testuser</string>
    </dict>
</array>
<key>Profile</key>
<string>test profile 1</string>
</dict>
</plist>
Suppose I want to remove the string value associated with key=Password, how can I do that?
 
     
     
    