Gta5EyeTracking.Features.AnimationName.Equals C# (CSharp) Méthode

Equals() public méthode

public Equals ( AnimationName other ) : bool
other AnimationName
Résultat bool
        public bool Equals(AnimationName other)
        {
            if (other == null) return false;
            return string.Equals(Group, other.Group) && string.Equals(Name, other.Name);
        }