Search:
Forum
General C++ Programming
What does this statement mean?
What does this statement mean?
Jul 12, 2011 at 11:22am UTC
SameerThigale
(95)
1
2
3
4
int
main(array<System::String ^> ^args) {
return
0; }
Im asking about:
array<System::String ^> ^args
Whats this:
^>
Jul 12, 2011 at 11:24am UTC
Moschops
(7244)
Some kind of .NET syntax. It's not C++.
Jul 12, 2011 at 11:26am UTC
SameerThigale
(95)
Is there any kind of
^
operator in C++?
Jul 12, 2011 at 11:28am UTC
LB
(13399)
The bitwise XOR operator, yes. But the usage of ^ in the example you posted means managed pointer and is an extension to the C++ language that MS added for stuff like C++/CLI and .NET, etc
Topic archived. No new replies allowed.
C++
Information
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs