[Mono-bugs] [Bug 383899] New: System.IO.Path.GetInvalidFileNameChars() return values in different order on MS.NET vs. MonoWindows

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Fri Apr 25 15:25:19 EDT 2008


https://bugzilla.novell.com/show_bug.cgi?id=383899


           Summary: System.IO.Path.GetInvalidFileNameChars() return values
                    in different order on MS.NET vs. MonoWindows
           Product: Mono: Class Libraries
           Version: 1.9.0
          Platform: x86
        OS/Version: Windows XP
            Status: NEW
          Severity: Normal
          Priority: P5 - None
         Component: CORLIB
        AssignedTo: mono-bugs at lists.ximian.com
        ReportedBy: jfrayne at blizzard.com
         QAContact: mono-bugs at lists.ximian.com
          Found By: ---


This test was done on the same machine on the same operating system:

namespace IllegalCharTest
{
        class Program
        {
                static void Main(string[] args)
                {
                        foreach (char illegalChar in
System.IO.Path.GetInvalidFileNameChars())
                        {
                                Console.WriteLine(illegalChar.ToString() +
"END");
                        }
                        Console.Read();
                }
        }
}

Expected:
"END
<END
>END
|END
 END
☺END
☻END
♥END
♦END
♣END
♠END
END
END
        END

END
♂END
♀END
END
♫END
☼END
►END
◄END
↕END
‼END
¶END
§END
▬END
↨END
↑END
↓END
→END
←END
∟END
↔END
▲END
▼END
:END
*END
?END
\END
/END

Actual:
 END
☺END
☻END
♥END
♦END
♣END
♠END
END
END
        END

END
♂END
♀END
END
♫END
☼END
►END
◄END
↕END
‼END
¶END
§END
▬END
↨END
↑END
↓END
→END
←END
∟END
↔END
▲END
▼END
"END
<END
>END
|END
:END
*END
?END
\END
/END


-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.


More information about the mono-bugs mailing list