Microsoft.Xna.Framework.Input.GamePadThumbSticks.operator C# (CSharp) Method

operator() public static method

Determines whether two specified instances of GamePadThumbSticks are equal.
public static operator ( ) : bool
return bool
        public static bool operator ==(GamePadThumbSticks left, GamePadThumbSticks right)
        {
            return (left.left == right.left)
                && (left.right == right.right);
        }