Skip to content

Commit b121ccb

Browse files
authored
Merge pull request #5346 from Rageking8/replace-backslash-with-forward-slash-for-cpp-cli
Replace backslash with forward slash for "C++/CLI"
2 parents 6ad5363 + 0140c18 commit b121ccb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/dotnet/how-to-define-and-consume-classes-and-structs-cpp-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ in static constructor
466466

467467
## <a name="BKMK_Semantics_of_the_this_pointer"></a> Semantics of the `this` pointer
468468

469-
When you're using C++\CLI to define types, the **`this`** pointer in a reference type is of type *handle*. The **`this`** pointer in a value type is of type *interior pointer*.
469+
When you're using C++/CLI to define types, the **`this`** pointer in a reference type is of type *handle*. The **`this`** pointer in a value type is of type *interior pointer*.
470470

471471
These different semantics of the **`this`** pointer can cause unexpected behavior when a default indexer is called. The next example shows the correct way to access a default indexer in both a ref type and a value type.
472472

0 commit comments

Comments
 (0)