Skip to content

Commit 67a353e

Browse files
authored
Fix duplicate operator[] entry in CSimpleStringT reference
1 parent 06b4932 commit 67a353e

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

docs/atl-mfc-shared/reference/csimplestringt-class.md

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -716,28 +716,6 @@ CSimpleString s(_T("abc"), pMgr);
716716
ASSERT(s[1] == _T('b'));
717717
```
718718
719-
## <a name="operator_at"></a> `CSimpleStringT::operator []`
720-
721-
Call this function to access a single character of the character array.
722-
723-
### Syntax
724-
725-
```cpp
726-
XCHAR operator[](int iChar) const;
727-
```
728-
729-
### Parameters
730-
731-
*`iChar`*<br/>
732-
Zero-based index of a character in the string.
733-
734-
### Remarks
735-
736-
The overloaded subscript (**`[]`**) operator returns a single character specified by the zero-based index in *`iChar`*. This operator is a convenient substitute for the [`GetAt`](#getat) member function.
737-
738-
> [!NOTE]
739-
> You can use the subscript (**`[]`**) operator to get the value of a character in a `CSimpleStringT`, but you cannot use it to change the value of a character in a `CSimpleStringT`.
740-
741719
## <a name="operator_add_eq"></a> `CSimpleStringT::operator +=`
742720
743721
Joins a new string or character to the end of an existing string.

0 commit comments

Comments
 (0)