D
David Krmpotic
string s = "";
for(int i = 0; i< Path.InvalidPathChars.Length; i++)
{
s += Path.InvalidPathChars + " ";
}
MessageBox.Show(s);
shows only " | < >
but there should be at least two more: ? and *
Can you confirm the bug or is that normal behaviour (how could it possibly
be?)
david
for(int i = 0; i< Path.InvalidPathChars.Length; i++)
{
s += Path.InvalidPathChars + " ";
}
MessageBox.Show(s);
shows only " | < >
but there should be at least two more: ? and *
Can you confirm the bug or is that normal behaviour (how could it possibly
be?)
david