B
Bob Palank
Given the following from MSVC Help:
// C3699.cpp// compile with: /clr /cusing namespace System;int main() {
String * s; // C3699
// try the following line instead String ^ s2}
So how do we handle such a major change with new C++ students when the
current books show astericks ?
The change to the caret works of course.
But can someone provide an explanation as to why we should use the caret in
words a beginning student can understand ?
I suppose the beginning student would say caret in place of asterick ? -
who cares and would move on.
But I worry about the student who wants an explanation.
How would you explain it ?
TIA Bob
// C3699.cpp// compile with: /clr /cusing namespace System;int main() {
String * s; // C3699
// try the following line instead String ^ s2}
So how do we handle such a major change with new C++ students when the
current books show astericks ?
The change to the caret works of course.
But can someone provide an explanation as to why we should use the caret in
words a beginning student can understand ?
I suppose the beginning student would say caret in place of asterick ? -
who cares and would move on.
But I worry about the student who wants an explanation.
How would you explain it ?
TIA Bob