Removed Comments

This commit is contained in:
2023-02-05 09:33:49 -07:00
parent 1d9b63ffba
commit 75ec814c7c
21 changed files with 27 additions and 1357 deletions

View File

@ -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