Removed Comments
This commit is contained in:
@ -96,15 +96,6 @@ public struct Point : IEquatable<Point>
|
||||
/// <param name="point2">The second <see cref="Point"/> structure to compare.</param>
|
||||
/// <returns><code>true</code> if <paramref name="point1"/> and <paramref name="point2"/> have different <see cref="X"/> or <see cref="Y"/> coordinates; <code>false</code> if <paramref name="point1"/> and <paramref name="point2"/> have the same <see cref="X"/> and <see cref="Y"/> coordinates.</returns>
|
||||
|
||||
/* Unmerged change from project 'FaceRecognition(netstandard2.0)'
|
||||
Before:
|
||||
public static bool operator !=(Point point1, Point point2)
|
||||
{
|
||||
return !(point1 == point2);
|
||||
}
|
||||
After:
|
||||
public static bool operator !=(Point point1, Point point2) => !(point1 == point2);
|
||||
*/
|
||||
public static bool operator !=(Point point1, Point point2) => !(point1 == point2);
|
||||
|
||||
#endregion
|
||||
|
Reference in New Issue
Block a user