I was reading Ivor Horton's Beginning Visual C++ 2008 and many of its CLR examples have this definition for main:
int main(array<System::String ^> ^args)
I went back, page by page, to the beginning of the book to find the first such instance with an explanation what it really means, but couldn't find one.
明らかにそれは標準と同じ意味ですが、いつ、なぜそれが実際に使用されるのか、そしてなぜそれが存在するのint main(int argc, char *argv[])
かを知りたいです(ポインターと参照が表現できないことをしますか)?^
*
&