Microsoft.Xna.Framework.Rectangle.operator C# (CSharp) Méthode

operator() public static méthode

public static operator ( ) : bool
Résultat 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;
		}