C++/CLI Learning Notes
This language is case sensitive language. Unlike Visual Basic, when you type command in different case, the compiler will trigger error.
For example:
1. using namespace system; => this will trigger error.
using namespace System; => No error.
2. console::writeline("Hello"); => this will trigger error.
Console::WriteLine("Hello"); => No error.
written on 8 Sept 2015, 2:15pm
This language is case sensitive language. Unlike Visual Basic, when you type command in different case, the compiler will trigger error.
For example:
1. using namespace system; => this will trigger error.
using namespace System; => No error.
2. console::writeline("Hello"); => this will trigger error.
Console::WriteLine("Hello"); => No error.
written on 8 Sept 2015, 2:15pm

No comments:
Post a Comment