You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Devirtualized path for practically all dictionaries
79
+
#pragma warning disable IDE0079// Remove unnecessary suppression -- Suppression below is falsely flagged as unnecessary
79
80
#pragma warning disable CS8714// The type cannot be used as type parameter in the generic type or method. Nullability of type argument doesn't match 'notnull' constraint. -- Was type-checked
#pragma warning restore CS8714// The type cannot be used as type parameter in the generic type or method. Nullability of type argument doesn't match 'notnull' constraint.
// Devirtualized path for practically all dictionaries
120
+
#pragma warning disable IDE0079// Remove unnecessary suppression -- Suppression below is falsely flagged as unnecessary
118
121
#pragma warning disable CS8714// The type cannot be used as type parameter in the generic type or method. Nullability of type argument doesn't match 'notnull' constraint. -- Was type-checked
#pragma warning restore CS8714// The type cannot be used as type parameter in the generic type or method. Nullability of type argument doesn't match 'notnull' constraint.
Copy file name to clipboardExpand all lines: DomainModeling/ISerializableDomainObject.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
namespaceArchitect.DomainModeling;
4
4
5
5
/// <summary>
6
-
/// An <see cref="IDomainObject"/> of type <typeparamref name="TModel"/> that can be serialized and deserialized to underlying type <typeparamref name="TUnderlying"/>.
6
+
/// A domain object of type <typeparamref name="TModel"/> that can be serialized to and deserialized from underlying type <typeparamref name="TUnderlying"/>.
0 commit comments