Pinta.ImageManipulation.Size.operator C# (CSharp) 메소드

operator() 공개 정적인 메소드

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