Hi,
I have a simple string class, which is defined below:
class String
{
public:
char* str;
};
I wanted to know if the assignment operator can be overloaded to do the following... (See 6th line in the below function)
Some_Function()
{
.............
char* TestStr;
cString MyString;
TestStr = MyString; // Can this be implemented??
}