Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
M10669: Possible typo mistake: 'SC1721'
@wiwagn,
It seems that 'SC1721' is a typo of 'CS1721'. Could you help to review this and reply, please?
Many thanks in advance!
  • Loading branch information
carolinacmoravia authored Sep 18, 2017
commit 62afa36d1fcd943ae9969f77e2fc4ea6feb61cbf
2 changes: 1 addition & 1 deletion docs/csharp/language-reference/compiler-messages/cs1721.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Class 'class' cannot have multiple base classes: 'class_1' and 'class_2'
The most common cause of this error message is attempting to use multiple inheritance. A class in C# may only inherit directly from one class. However, a class can implement any number of interfaces.

## Example
The following example shows one way in which SC1721 is generated, and then shows two possible ways to avoid the error.
The following example shows one way in which CS1721 is generated, and then shows two possible ways to avoid the error.

```csharp
// CS1721.cs
Expand Down