Summary
The get function returns a const pointer to the string's null-terminated, internal buffer.
const char_type* get() const;
Example Code
 nsEmbedCString str("hello world");
 printf("%s\n", str.get());
              The get function returns a const pointer to the string's null-terminated, internal buffer.
const char_type* get() const;
 nsEmbedCString str("hello world");
 printf("%s\n", str.get());