Microsoft.Xna.Framework.Rectangle.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : bool
return bool
		public static bool operator == (Rectangle r1, Rectangle r2)
		{
			return r1.X == r2.X && r1.Y == r2.Y && r1.Width == r2.Width && r1.Height == r2.Height;
		}