I wrote a simple method in C# to parse a given xml file and return the value of a specific node. It works fine but I'd also like to return a default value if the node is not found instead of throwing an exception. How can I do this? Can the method be written better? Thanks for any help offered. JohnI wrote a simple method in C# to parse a given