diff --git a/xml/System/Delegate+InvocationListEnumerator`1.xml b/xml/System/Delegate+InvocationListEnumerator`1.xml
index 87bf73123ce..23020e1d3d5 100644
--- a/xml/System/Delegate+InvocationListEnumerator`1.xml
+++ b/xml/System/Delegate+InvocationListEnumerator`1.xml
@@ -85,8 +85,8 @@
- Implements IEnumerable.GetEnumerator() to return 'this' as the IEnumerator.
- To be added.
+ Implements IEnumerable.GetEnumerator() to return 'this' as the IEnumerator.
+ An IEnumerator instance that can be used to iterate through the invocation targets of the delegate.
To be added.
@@ -108,7 +108,7 @@
Implements the IEnumerator pattern.
- To be added.
+ if the enumerator was successfully advanced to the next element; otherwise, if the enumerator has passed the end of the collection.
To be added.
diff --git a/xml/System/Delegate.xml b/xml/System/Delegate.xml
index be3f501f069..71e657eb245 100644
--- a/xml/System/Delegate.xml
+++ b/xml/System/Delegate.xml
@@ -1878,13 +1878,11 @@ The number, order, or type of parameters listed in is i
- To be added.
- To be added.
+ Delegate type being enumerated.
+ The delegate being enumerated.
Gets an enumerator for the invocation targets of this delegate.
- To be added.
- This method returns a that follows the IEnumerable pattern and thus can be used in a C# 'foreach' statement to retrieve the invocation targets of this delegate without allocations.
- The order of the delegates returned by the enumerator is the same order in which the current delegate invokes the methods that those delegates represent.
- The method returns an empty enumerator for delegate.
+ A that follows the IEnumerable pattern and thus can be used in a C# 'foreach' statement to retrieve the invocation targets of this delegate without allocations. The method returns an empty enumerator for delegate.
+ The order of the delegates returned by the enumerator is the same order in which the current delegate invokes the methods that those delegates represent.
diff --git a/xml/System/MemoryExtensions+SpanSplitEnumerator`1.xml b/xml/System/MemoryExtensions+SpanSplitEnumerator`1.xml
index e5b4cd8df4d..4b863c367d9 100644
--- a/xml/System/MemoryExtensions+SpanSplitEnumerator`1.xml
+++ b/xml/System/MemoryExtensions+SpanSplitEnumerator`1.xml
@@ -34,7 +34,7 @@
- To be added.
+ The type of items in the .
Enables enumerating each split within a that has been divided using one or more separators.
To be added.
diff --git a/xml/System/MemoryExtensions.xml b/xml/System/MemoryExtensions.xml
index 691b81a1a57..db6fb9e71e8 100644
--- a/xml/System/MemoryExtensions.xml
+++ b/xml/System/MemoryExtensions.xml
@@ -4368,11 +4368,11 @@ If `source` and `destination` overlap, this method behaves as if the original va
- To be added.
+ The type of elements in the span.
The span to search.
The value to compare.
Determines whether the specified value appears at the end of the span.
- To be added.
+ if matches the end of ; otherwise, .
To be added.
@@ -4964,7 +4964,7 @@ Invalid sequences will be represented in the enumeration by The span to search.
The set of values to search for.
Searches for the first index of any of the specified substring values.
- To be added.
+ The first index of any of the specified values, or -1 if none are found.
To be added.
@@ -5001,7 +5001,7 @@ Invalid sequences will be represented in the enumeration by The span to search.
The set of values to search for.
Searches for the first index of any of the specified substring values.
- To be added.
+ The first index of any of the specified values, or -1 if none are found.
To be added.
@@ -9787,11 +9787,11 @@ Invalid sequences will be represented in the enumeration by
- To be added.
+ The type of elements in the span.
The span to search.
The value to compare.
Determines whether the specified value appears at the start of the span.
- To be added.
+ if matches the beginning of ; otherwise, .
To be added.
diff --git a/xml/System/Type.xml b/xml/System/Type.xml
index eab8d9bf4fb..d85bb216b16 100644
--- a/xml/System/Type.xml
+++ b/xml/System/Type.xml
@@ -6135,12 +6135,20 @@ One of the elements in the array is
- To be added.
- To be added.
- To be added.
- To be added.
- To be added.
- To be added.
+ The string containing the name of the method to get.
+ The number of generic type parameters of the method.
+ A bitwise combination of the enumeration values that specify how the search is conducted.
+
+ -or-
+
+ to return .
+ An array of objects representing the number, order, and type of the parameters for the method to get.
+
+-or-
+
+An empty array of objects (as provided by the field) to get a method that takes no parameters.
+ Searches for the specified method whose parameters match the specified generic parameter count and argument types, using the specified binding constraints.
+ An object representing the method that matches the specified generic parameter count, argument types, and binding constraints, if found; otherwise, .
To be added.