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 91938ea commit 7dcb5c6Copy full SHA for 7dcb5c6
src/BootstrapBlazor/Components/Typed/TypedOptions.cs
@@ -130,4 +130,25 @@ private bool EqualText(List<string>? text)
130
}
131
return Text.SequenceEqual(text);
132
133
+
134
+ /// <summary>
135
+ /// <inheritdoc/>
136
+ /// </summary>
137
+ /// <param name="obj"></param>
138
+ /// <returns></returns>
139
+ public override bool Equals(object? obj)
140
+ {
141
+ if (obj is TypedOptions option)
142
143
+ return Equals(option);
144
+ }
145
146
+ return false;
147
148
149
150
151
152
153
+ public override int GetHashCode() => base.GetHashCode();
154
0 commit comments