Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
reorder the doc elements
  • Loading branch information
tarekgh committed Jul 21, 2022
commit b2b1c8f8e552c9f9e4519e50b946df683cc0b42c
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ public override bool CanConvertTo(ITypeDescriptorContext? context, [NotNullWhen(
return base.ConvertFrom(context, culture, value);
}

/// <inheritdoc />
/// <summary>
/// Converts the given value object from a <see cref='System.DateOnly'/> object using the arguments.
/// </summary>
/// <inheritdoc />
public override object? ConvertTo(ITypeDescriptorContext? context, CultureInfo? culture, object? value, Type destinationType)
{
if (destinationType == typeof(string) && value is DateOnly dateOnly)
Expand Down