Skip to content

Commit 3be0f06

Browse files
author
Colin Robertson
authored
Update managed-types-cpp-cli.md
Pull the compiler option reference out of the table.
1 parent 8f45590 commit 3be0f06

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/dotnet/managed-types-cpp-cli.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The following table shows the keywords for built-in Visual C++ types, which are
2828
|-----------------------|-------------------------|
2929
|**void**|<xref:System.Void?displayProperty=nameWithType>|
3030
|**bool**|<xref:System.Boolean?displayProperty=nameWithType>|
31-
|**signed char** (see [/J](../build/reference/j-default-char-type-is-unsigned.md) for more information)|<xref:System.SByte?displayProperty=nameWithType>|
31+
|**signed char** |<xref:System.SByte?displayProperty=nameWithType>|
3232
|**unsigned char**|<xref:System.Byte?displayProperty=nameWithType>|
3333
|**wchar_t**|<xref:System.Char?displayProperty=nameWithType>|
3434
|**short** and **signed short**|<xref:System.Int16?displayProperty=nameWithType>|
@@ -40,6 +40,8 @@ The following table shows the keywords for built-in Visual C++ types, which are
4040
|**float**|<xref:System.Single?displayProperty=nameWithType>|
4141
|**double** and **long double**|<xref:System.Double?displayProperty=nameWithType>|
4242
43+
For more information about the compiler option to default to signed or unsigned **char**, see [/J (Default char type Is unsigned)](../build/reference/j-default-char-type-is-unsigned.md).
44+
4345
## <a name="version_issues"></a> Version Issues for Value Types Nested in Native Types
4446
4547
Consider a signed (strong name) assembly component used to build a client assembly. The component contains a value type that is used in the client as the type for a member of a native union, a class, or an array. If a future version of the component changes the size or layout of the value type, the client must be recompiled.

0 commit comments

Comments
 (0)