Pinta.ImageManipulation.Size.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : bool
return bool
		public static bool operator == (Size s1, Size s2)
		{
			return s1.Width == s2.Width && s1.Height == s2.Height;
		}