Skip to content

Commit fe1663c

Browse files
authored
Show only language selected (#4172)
1 parent e2ff09b commit fe1663c

File tree

1 file changed

+10
-14
lines changed

1 file changed

+10
-14
lines changed

xml/System/Object.xml

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1128,20 +1128,16 @@ and the <xref:System.IDisposable> interface. The <xref:System.IDisposable.Dispos
11281128
11291129
If you do choose to implement [IStringable](https://msdn.microsoft.com/library/windows/apps/windows.foundation.istringable.aspx) in a public managed type that is exported in a [!INCLUDE[wrt](~/includes/wrt-md.md)] component, the following restrictions apply:
11301130
1131-
- You can define the [IStringable](https://msdn.microsoft.com/library/windows/apps/windows.foundation.istringable.aspx) interface only in a "class implements" relationship, such as
1132-
1133-
```csharp
1134-
public class NewClass : IStringable
1135-
```
1136-
1137-
in C#, or
1138-
1139-
```vb
1140-
Public Class NewClass : Implements IStringable
1141-
```
1142-
1143-
in Visual Basic.
1144-
1131+
- You can define the [IStringable](https://msdn.microsoft.com/library/windows/apps/windows.foundation.istringable.aspx) interface only in a "class implements" relationship, as follows:
1132+
1133+
```csharp
1134+
public class NewClass : IStringable
1135+
```
1136+
1137+
```vb
1138+
Public Class NewClass : Implements IStringable
1139+
```
1140+
11451141
- You cannot implement [IStringable](https://msdn.microsoft.com/library/windows/apps/windows.foundation.istringable.aspx) on an interface.
11461142
11471143
- You cannot declare a parameter to be of type [IStringable](https://msdn.microsoft.com/library/windows/apps/windows.foundation.istringable.aspx).

0 commit comments

Comments
 (0)