O
Oleg Medyanik
Hi, i wonder if someone can explain the following...
Create new Console application...
static void Main(string[] args)
{
Console.WriteLine(args[0]);
}
Run it with the following param
ConsoleApplication1.exe test$^
On my Win XP and NET 1.1 i receive the output: test$
^ disappears.
Faced it first when worked with custom installer, then tried the simple
program also parsing command line...
Is ^ char used in splits?
ConsoleApplication1.exe test^^^^
produces the following output : test^^
Thank you.
Create new Console application...
static void Main(string[] args)
{
Console.WriteLine(args[0]);
}
Run it with the following param
ConsoleApplication1.exe test$^
On my Win XP and NET 1.1 i receive the output: test$
^ disappears.
Faced it first when worked with custom installer, then tried the simple
program also parsing command line...
Is ^ char used in splits?
ConsoleApplication1.exe test^^^^
produces the following output : test^^
Thank you.