System.Xml.Tests.XmlSystemPathResolverTests.TestResolveAbsolutePath C# (CSharp) Method

TestResolveAbsolutePath() private method

private TestResolveAbsolutePath ( ) : void
return void
        public static void TestResolveAbsolutePath()
        {
            string path = Path.GetTempFileName();
            try
            {
                XmlReader.Create(path).Dispose();
            }
            finally
            {
                File.Delete(path);
            }
        }