Microsoft.Xna.Framework.Input.GamePadThumbSticks.operator C# (CSharp) 메소드

operator() 공개 정적인 메소드

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