I am looking to read xml files using xmlreader without causing lock on the file. all my operations are read only
$reader= system.Xml.XmlReader]::Create($xmlfile)
whenever I use $reader.read() I can't seem to get another thread read the same file.. any help is much appreciated.
Read the file into a string, wrap the string in a StringReader and pass that to the XmlReader.Create method e.g.: