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

Equals() 공개 메소드

Returns a value indicating whether this instance is equal to a specified object.
public Equals ( object obj ) : bool
obj object An object to compare to this instance.
리턴 bool
        public override bool Equals(object obj)
        {
            return (obj is GamePadThumbSticks) && (this == (GamePadThumbSticks)obj);
        }