34 lines
391 B
Markdown
34 lines
391 B
Markdown
# Copy
|
||
|
||
Copies a string by reference.
|
||
|
||
```
|
||
void Copy(
|
||
string& copy // reference
|
||
) const;
|
||
|
||
```
|
||
|
||
Parameters
|
||
|
||
copy
|
||
|
||
[in] Reference to a data string.
|
||
|
||
# Copy
|
||
|
||
Copies a string to the CString class instance.
|
||
|
||
```
|
||
void Copy(
|
||
CString* copy // pointer
|
||
) const;
|
||
|
||
```
|
||
|
||
Parameters
|
||
|
||
copy
|
||
|
||
[in] Pointer to CString class instance for data.
|