in my Solution i have two projects (Windows Service and WPF to mange the service) and i have a sitting file (XML) that service use What i ask about is :
i want to know when the user make any change in the XML file with out restart the service and know What is the xml node(s) that has changed
I have searched a lot and found that the solution is through FileSystemWatcher
Listens to the file system change notifications and raises events when a directory, or file in a directory, changes.
but how i know What is the xml node(s) that has changed
thanks