String in Console.Write
-
I used VC++6 a few years ago and then was out of programming for a long while. Trying to get back to it again (C++) using VS .Net 2003. Got a book (Step by step) where the author shows: Console.Write(S"...."); What does the 'S' do? I've seen it with and without it and it seems to work the same either way. Where can I read about? I've tried looking in the .net help but I guess I'm not using the right search. Thanks, Jose
-
I used VC++6 a few years ago and then was out of programming for a long while. Trying to get back to it again (C++) using VS .Net 2003. Got a book (Step by step) where the author shows: Console.Write(S"...."); What does the 'S' do? I've seen it with and without it and it seems to work the same either way. Where can I read about? I've tried looking in the .net help but I guess I'm not using the right search. Thanks, Jose
The
S
prefix on a string literal means "this is a managed Unicode string". --Mike--