G
Guest
Hi,
I'm new in VC++ and I'm trying to do this:
String* arguments[] = Environment::GetCommandLineArgs();
if (arguments[1] == S"Hello")
Console::WriteLine(S"I got it!!!");
It's not working because I supose that arguments[1] is a pointer (Vb.Net has
no pointers). How can I solve this comparison?
Thanks
I'm new in VC++ and I'm trying to do this:
String* arguments[] = Environment::GetCommandLineArgs();
if (arguments[1] == S"Hello")
Console::WriteLine(S"I got it!!!");
It's not working because I supose that arguments[1] is a pointer (Vb.Net has
no pointers). How can I solve this comparison?
Thanks