InsainFreak101@gmail.com wrote:
> I'm making a program and everything works except for a couple of
> assignment operators for a string object.
>
> here is the snippet of code:
>
> name.assign(theItem.getName);
>
> I've also tried useing the "=" operator, but it doesn't compile.
> If anyone has any suggestions, I would appreciate the
Just guessing, since you did not post much code:
name = theItem.getName();
Best
Kai-Uwe Bux