AdvancedLauncher.SDK.Model.Config.Profile.GetHashCode C# (CSharp) Method

GetHashCode() public method

Returns the hash code for this Profile
public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            int prime = 31;
            int result = 1;
            result = prime * result + (Guid == null ? 0 : Guid.GetHashCode());
            return result;
        }