C++ Compiling error.I'm using Visual Studio 2015 and I'm getting these errors, I might be just stupid. http://gyazo.com/059b308067b66200d3c0e5f95c3cfba3 Code: void Main (array <String^>^ args) Any suggestions? I'm kind of rusty with C++
Originally Posted by Skipss I'm using Visual Studio 2015 and I'm getting these errors, I might be just stupid. http://gyazo.com/059b308067b66200d3c0e5f95c3cfba3 Code: void Main (array <String^>^ args) Any suggestions? I'm kind of rusty with C++ Delete the "array <String^>^ args" inside the brackets. I've tested it now and it works fine.
Originally Posted by phoenix8383 Delete the "array <String^>^ args" inside the brackets. I've tested it now and it works fine. Thanks man!