Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit eded66b

Browse files
authored
Document System.*IntPtr.Equals (EII) (dotnet#3647)
* Document System.*IntPtr.Equals (EII) * suggestions by maiaraw Co-Authored-By: Maira Wenzel <[email protected]> * IEquatable build warning
1 parent 11edd9b commit eded66b

File tree

2 files changed

+26
-8
lines changed

2 files changed

+26
-8
lines changed

xml/System/IntPtr.xml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1171,10 +1171,19 @@
11711171
<Parameter Name="other" Type="System.IntPtr" Index="0" FrameworkAlternate="netcore-2.0;netcore-2.1;netcore-2.2;netcore-3.0;netstandard-2.1" />
11721172
</Parameters>
11731173
<Docs>
1174-
<param name="other">To be added.</param>
1175-
<summary>To be added.</summary>
1176-
<returns>To be added.</returns>
1177-
<remarks>To be added.</remarks>
1174+
<param name="other">A signed integer pointer to compare with this instance.</param>
1175+
<summary>Returns a value that indicates whether this instance is equal to another signed integer pointer.</summary>
1176+
<returns>
1177+
<see langword="true" /> if <paramref name="other" /> equals the value of this instance; otherwise, <see langword="false" />.</returns>
1178+
<remarks>
1179+
<format type="text/markdown"><![CDATA[
1180+
1181+
## Remarks
1182+
1183+
This member is an explicit interface member implementation. It can be used only when the <xref:System.IntPtr> instance is cast to an <xref:System.IEquatable%601> interface.
1184+
1185+
]]></format>
1186+
</remarks>
11781187
</Docs>
11791188
</Member>
11801189
<Member MemberName="System.Runtime.Serialization.ISerializable.GetObjectData">

xml/System/UIntPtr.xml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1041,10 +1041,19 @@
10411041
<Parameter Name="other" Type="System.UIntPtr" Index="0" FrameworkAlternate="netcore-2.0;netcore-2.1;netcore-2.2;netcore-3.0;netstandard-2.1" />
10421042
</Parameters>
10431043
<Docs>
1044-
<param name="other">To be added.</param>
1045-
<summary>To be added.</summary>
1046-
<returns>To be added.</returns>
1047-
<remarks>To be added.</remarks>
1044+
<param name="other">An unsigned integer pointer to compare with this instance.</param>
1045+
<summary>Returns a value that indicates whether this instance is equal to another unsigned integer pointer.</summary>
1046+
<returns>
1047+
<see langword="true" /> if <paramref name="other" /> equals the value of this instance; otherwise, <see langword="false" />.</returns>
1048+
<remarks>
1049+
<format type="text/markdown"><![CDATA[
1050+
1051+
## Remarks
1052+
1053+
This member is an explicit interface member implementation. It can be used only when the <xref:System.UIntPtr> instance is cast to an <xref:System.IEquatable%601> interface.
1054+
1055+
]]></format>
1056+
</remarks>
10481057
</Docs>
10491058
</Member>
10501059
<Member MemberName="System.Runtime.Serialization.ISerializable.GetObjectData">

0 commit comments

Comments
 (0)