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
/// Tests whether the specified object is a <see cref="Color" /> and is equivalent to this <see cref="Color" />.
21
21
/// </summary>
22
22
/// <param name="color">The color to test.</param>
23
23
/// <param name="obj">The object to test.</param>
24
24
/// <returns><c>true</c> if <paramref name="obj" /> is a <see cref="Color" /> equivalent to this <see cref="Color" />; otherwise, <c>false</c>.</returns>
Copy file name to clipboardExpand all lines: RGB.NET.Core/Color/Behaviors/IColorBehavior.cs
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,14 @@ public interface IColorBehavior
20
20
/// <returns><c>true</c> if <paramref name="obj" /> is a <see cref="Color" /> equivalent to this <see cref="Color" />; otherwise, <c>false</c>.</returns>
21
21
boolEquals(inColorcolor,object?obj);
22
22
23
+
/// <summary>
24
+
/// Tests whether the specified object is a <see cref="Color" /> and is equivalent to this <see cref="Color" />.
25
+
/// </summary>
26
+
/// <param name="color">The first color to test.</param>
27
+
/// <param name="color2">The second color to test.</param>
28
+
/// <returns><c>true</c> if <paramref name="color2" /> equivalent to this <see cref="Color" />; otherwise, <c>false</c>.</returns>
29
+
boolEquals(inColorcolor,inColorcolor2);
30
+
23
31
/// <summary>
24
32
/// Returns a hash code for this <see cref="Color" />.
/// <returns><c>true</c> if <paramref name="obj" /> is a <see cref="Color" /> equivalent to this <see cref="Color" />; otherwise, <c>false</c>.</returns>
0 commit comments