Skip to content

Commit

Permalink
Amend.
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanLarsson committed Jan 2, 2021
1 parent 9d9670c commit 9a11b5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ValidCode.Netcore/Repro/Issue292.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace ValidCode.Repro
namespace ValidCode.Netcore.Repro
{
using System.Collections;
using System.Collections.ObjectModel;
Expand All @@ -18,7 +18,7 @@ public static class Issue292

/// <summary>Helper for setting <see cref="EnumerableProperty"/> on <paramref name="element"/>.</summary>
/// <param name="element"><see cref="DataGrid"/> to set <see cref="EnumerableProperty"/> on.</param>
/// <param name="value">RowsSource property value.</param>
/// <param name="value">Enumerable property value.</param>
public static void SetEnumerable(this DataGrid element, IEnumerable? value)
{
if (element is null)
Expand All @@ -31,7 +31,7 @@ public static void SetEnumerable(this DataGrid element, IEnumerable? value)

/// <summary>Helper for getting <see cref="EnumerableProperty"/> from <paramref name="element"/>.</summary>
/// <param name="element"><see cref="DataGrid"/> to read <see cref="EnumerableProperty"/> from.</param>
/// <returns>RowsSource property value.</returns>
/// <returns>Enumerable property value.</returns>
[AttachedPropertyBrowsableForChildren(IncludeDescendants = false)]
[AttachedPropertyBrowsableForType(typeof(DataGrid))]
public static IEnumerable? GetEnumerable(this DataGrid element)
Expand Down

0 comments on commit 9a11b5a

Please sign in to comment.