I am trying to do the following in C++, the C# code is here
test is a string btw.
if (test == null || !test.Equals("Item Name\t"))
return data;
I did this in C++, but its crashing the program
if (test.compare(NULL) == 0 || test.compare("Item Name\t") != 0)
return data;