Skip to content

Update live with current master #3790

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

Merged
merged 4 commits into from
Jan 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions xml/System.Collections/IComparer.xml
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,7 @@ The following example uses the <xref:System.Collections.IComparer> interface to
<param name="x">The first object to compare.</param>
<param name="y">The second object to compare.</param>
<summary>Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other.</summary>
<returns>A signed integer that indicates the relative values of <paramref name="x" /> and <paramref name="y" />:<br /> - If less than 0, <paramref name="x" /> is less than <paramref name="y" />.<br /> - If 0, <paramref name="x" /> equals <paramref name="y" />.<br /> - If greater than 0, <paramref name="x" /> is greater than <paramref name="y" />.

.</returns>
<returns>A signed integer that indicates the relative values of <paramref name="x" /> and <paramref name="y" />:<br /> - If less than 0, <paramref name="x" /> is less than <paramref name="y" />.<br /> - If 0, <paramref name="x" /> equals <paramref name="y" />.<br /> - If greater than 0, <paramref name="x" /> is greater than <paramref name="y" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[

Expand Down
2 changes: 1 addition & 1 deletion xml/System.Diagnostics/DiagnosticSource.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<Interfaces />
<Docs>
<summary>An abstract class that allows code to be instrumented for production-time logging of rich data payloads for consumption within the process that was instrumented.</summary>
<remarks>For more information, see [DiagnosticSource User's Guide](https://github.com/dotnet/corefx/blob/master/src/System.Diagnostics.DiagnosticSource/src/DiagnosticSourceUsersGuide.md).</remarks>
<remarks>For more information, see [DiagnosticSource User's Guide](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Diagnostics.DiagnosticSource/src/DiagnosticSourceUsersGuide.md).</remarks>
</Docs>
<Members>
<Member MemberName=".ctor">
Expand Down
2 changes: 1 addition & 1 deletion xml/System.Windows.Controls/ItemsControl.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1066,7 +1066,7 @@ ListBox that contains multiple types of objects
<Docs>
<summary>Gets or sets a value that indicates whether <see cref="T:System.Windows.Controls.TextSearch" /> is enabled on the <see cref="T:System.Windows.Controls.ItemsControl" /> instance.</summary>
<value>
<see langword="true" /> if <see cref="T:System.Windows.Controls.TextSearch" /> is enabled; otherwise, <see langword="true" />. The default is <see langword="false" />.</value>
<see langword="true" /> if <see cref="T:System.Windows.Controls.TextSearch" /> is enabled; otherwise, <see langword="false" />. The default is <see langword="false" />.</value>
<remarks>
<format type="text/markdown"><![CDATA[

Expand Down
10 changes: 7 additions & 3 deletions xml/System/DateTime.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6924,9 +6924,13 @@ The following example demonstrates the <xref:System.DateTime.Parse%28System.Stri
## Remarks
A single tick represents one hundred nanoseconds or one ten-millionth of a second. There are 10,000 ticks in a millisecond, or 10 million ticks in a second.

The value of this property represents the number of 100-nanosecond intervals that have elapsed since 12:00:00 midnight, January 1, 0001 (0:00:00 UTC on January 1, 0001, in the Gregorian calendar), which represents <xref:System.DateTime.MinValue?displayProperty=nameWithType>. It does not include the number of ticks that are attributable to leap seconds.


The value of this property represents the number of 100-nanosecond intervals that have elapsed since 12:00:00 midnight, January 1, 0001 in the Gregorian calendar, which represents <xref:System.DateTime.MinValue>. It does not include the number of ticks that are attributable to leap seconds.
If the DateTime object has its `Kind` property set to `Local`, its ticks represent the time elapsed time since 12:00:00 midnight, January 1, 0001 in the local time as specified by the current time zone setting.
If the `DateTime` object has its `Kind` property set to `Utc`, its ticks represent the time elapsed time since 12:00:00 midnight, January 1, 0001 in the Coordinated Universal Time.
If the `DateTime` object has its `Kind` property set to `Unspecified`, its ticks represent the time elapsed time since 12:00:00 midnight, January 1, 0001 in the unknown time zone.

In general, the ticks represent the time according to the time zone specified by the `Kind` property.


## Examples

Expand Down