Unicode flood for C# NUnit?

I'm new to C# and NUnits. Can anyone point me in the right direction as to how I can create a loop that passes each and every unicode character of each set one at a time to an api that I'm testing?

It seems like the Unicode set are enumorated. Is it possible to use a for each character set for each character kind of thing?

Thanks for any help/advice,
Mart

[368 byte] By [Mart_Houston] at [2008-2-8]
# 1

Try this:


string foo = "FooBar";

foreach (char c in foo)
{

}


DavidM.Kean at 2007-9-8 > top of Msdn Tech,Visual C#,Visual C# Language...