Re: TString question

Pasha Murat (murat@cdfsga.fnal.gov)
Fri, 29 May 1998 11:39:50 -0500 (CDT)


Sorry, I missed the question at the end, here is the answer.
there are several assignment operators for TString class, one of them

TString& TString::operator=(const char* cs)

does what you need - you just write:

TString s;
s = "aaaaaa";
Regards, Pasha.