PurplePen.ExportXmlVersion2.TestFileExceptionMap C# (CSharp) Method

TestFileExceptionMap() public static method

public static TestFileExceptionMap ( ) : string>.Dictionary
return string>.Dictionary
        public static Dictionary<string, string> TestFileExceptionMap()
        {
            Dictionary<string, string> exceptions = new Dictionary<string, string>();
            exceptions[@"^    <Date>\d\d\d\d-\d\d-\d\d</Date>$"] = @"^    <Date>\d\d\d\d-\d\d-\d\d</Date>$";
            exceptions[@"^    <Clock>\d\d\:\d\d</Clock>$"] = @"^    <Clock>\d\d\:\d\d</Clock>$";
            return exceptions;
        }