-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Add missing docs for System.Collections[.Generic] #4121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||
---|---|---|---|---|---|---|---|---|
@@ -1,4 +1,4 @@ | ||||||||
<Type Name="Dictionary<TKey,TValue>" FullName="System.Collections.Generic.Dictionary<TKey,TValue>"> | ||||||||
<Type Name="Dictionary<TKey,TValue>" FullName="System.Collections.Generic.Dictionary<TKey,TValue>"> | ||||||||
<TypeSignature Language="C#" Value="public class Dictionary<TKey,TValue> : System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>, System.Collections.Generic.IDictionary<TKey,TValue>, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>, System.Collections.Generic.IReadOnlyCollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>, System.Collections.Generic.IReadOnlyDictionary<TKey,TValue>, System.Collections.IDictionary" 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.6" /> | ||||||||
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit Dictionary`2<TKey, TValue> extends System.Object implements class System.Collections.Generic.ICollection`1<valuetype System.Collections.Generic.KeyValuePair`2<!TKey, !TValue>>, class System.Collections.Generic.IDictionary`2<!TKey, !TValue>, class System.Collections.Generic.IEnumerable`1<valuetype System.Collections.Generic.KeyValuePair`2<!TKey, !TValue>>, class System.Collections.Generic.IReadOnlyCollection`1<valuetype System.Collections.Generic.KeyValuePair`2<!TKey, !TValue>>, class System.Collections.Generic.IReadOnlyDictionary`2<!TKey, !TValue>, class System.Collections.ICollection, class System.Collections.IDictionary, class System.Collections.IEnumerable" 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.6" /> | ||||||||
<TypeSignature Language="DocId" Value="T:System.Collections.Generic.Dictionary`2" /> | ||||||||
|
@@ -331,9 +331,10 @@ | |||||||
<Parameter Name="collection" Type="System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>" Index="0" FrameworkAlternate="netcore-2.0;netcore-2.1;netcore-2.2;netcore-3.0;netstandard-2.1;netcore-3.1;net-5.0" /> | ||||||||
</Parameters> | ||||||||
<Docs> | ||||||||
<param name="collection">To be added.</param> | ||||||||
<summary>To be added.</summary> | ||||||||
<param name="collection">The <see cref="T:System.Collections.Generic.IEnumerable`1" /> whose elements are copied to the new <see cref="T:System.Collections.Generic.Dictionary`2" />.</param> | ||||||||
<summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2" /> class that contains elements copied from the specified <see cref="T:System.Collections.Generic.IEnumerable`1" />.</summary> | ||||||||
<remarks>To be added.</remarks> | ||||||||
<exception cref="System.ArgumentException"><paramref name="collection" /> contains one or more duplicated keys.</exception> | ||||||||
|
<exception cref="System.ArgumentException"><paramref name="collection" /> contains one or more duplicated keys.</exception> | |
<exception cref="T:System.ArgumentException"> | |
<paramref name="collection" /> contains one or more duplicated keys.</exception> |
Also, if the inner value of the <exception>
starts with an xml tag, we usually prefer to start the text with an endline.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added them manually in e42c4c8, but used the tool to port the in the new commit. It missed the one added in Queue1.xml
(not sure how), so I applied your suggestion in e0f79cf and rebased.
The command I used was:
DocsPortingTool -docs D:\repos\dotnet-api-docs\xml -tripleslash D:\repos\dotnet_runtime\artifacts\bin\coreclr\Windows_NT.x64.Release\IL\,D:\repos\dotnet_runtime\artifacts\bin\ -includedassemblies System.Collections,System.Collections.Generic,mscorlib -excludedassemblies System.Collections.Immutable,System.Collections.Specialized,System.Collections.Concurrent -save true -skipExceptions false
Uh oh!
There was an error while loading. Please reload this page.