Skip to content

Commit 1ec9c01

Browse files
authored
Automatically port SByte docs (EII) (#4025)
1 parent 5496679 commit 1ec9c01

File tree

1 file changed

+32
-7
lines changed

1 file changed

+32
-7
lines changed

xml/System/SByte.xml

Lines changed: 32 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1133,10 +1133,27 @@
11331133
<Parameter Name="obj" Type="System.Object" Index="0" FrameworkAlternate="dotnet-uwp-10.0;netcore-1.0;netcore-1.1;netstandard-1.0;netstandard-1.1;netstandard-1.2;netstandard-1.3;netstandard-1.4;netstandard-1.5;netstandard-1.6" />
11341134
</Parameters>
11351135
<Docs>
1136-
<param name="obj">To be added.</param>
1137-
<summary>To be added.</summary>
1138-
<returns>To be added.</returns>
1139-
<remarks>To be added.</remarks>
1136+
<param name="obj">The object to compare.</param>
1137+
<summary>Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.</summary>
1138+
<returns>A value that indicates the relative order of the objects being compared.</returns>
1139+
<remarks>
1140+
<format type="text/markdown">
1141+
<![CDATA[
1142+
1143+
## Remarks
1144+
1145+
This member is an explicit interface member implementation. It can be used only when the <xref:System.SByte> instance is cast to an <xref:System.IComparable> interface.
1146+
1147+
The return value has these meanings:
1148+
1149+
| Value | Meaning |
1150+
|-------------------|-----------------------------------------------------------------------|
1151+
| Less than zero | This instance precedes `obj` in the sort order. |
1152+
| Zero | This instance occurs in the same position in the sort order as `obj`. |
1153+
| Greater than zero | This instance follows `obj` in the sort order. |
1154+
1155+
]]></format>
1156+
</remarks>
11401157
</Docs>
11411158
</Member>
11421159
<Member MemberName="System.IConvertible.GetTypeCode">
@@ -1166,9 +1183,17 @@
11661183
</ReturnValue>
11671184
<Parameters />
11681185
<Docs>
1169-
<summary>To be added.</summary>
1170-
<returns>To be added.</returns>
1171-
<remarks>To be added.</remarks>
1186+
<summary>Returns the <see cref="T:System.TypeCode" /> for this instance.</summary>
1187+
<returns>The enumerated constant that is the <see cref="T:System.TypeCode" /> of the class or value type that implements this interface.</returns>
1188+
<remarks>
1189+
<format type="text/markdown"><![CDATA[
1190+
1191+
## Remarks
1192+
1193+
This member is an explicit interface member implementation. It can be used only when the <xref:System.SByte> instance is cast to an <xref:System.IConvertible> interface.
1194+
1195+
]]></format>
1196+
</remarks>
11721197
</Docs>
11731198
</Member>
11741199
<Member MemberName="System.IConvertible.ToBoolean">

0 commit comments

Comments
 (0)