We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d58df6 commit 7bce970Copy full SHA for 7bce970
src/ProgressOnderwijsUtils/Pocos/PocoProperties.cs
@@ -37,9 +37,7 @@ public Type PocoType
37
38
public bool TryGetByName(string name, [NotNullWhen(true)] out IPocoProperty<T>? property)
39
{
40
- property = IndexByName.TryGetValue(name, out var index)
41
- ? Properties[index]
42
- : null;
+ property = IndexByName.TryGetValue(name, out var index) ? Properties[index] : null;
43
return property != null;
44
}
45
0 commit comments