File: ManifestId.cs
Web Access
Project: ..\..\..\src\Microsoft.DotNet.TemplateLocator\Microsoft.DotNet.TemplateLocator.csproj (Microsoft.DotNet.TemplateLocator)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.NET.Sdk.WorkloadManifestReader
{
    public struct ManifestId : IEquatable<ManifestId>, IComparable<ManifestId>
    {
        private string _id;
 
        public ManifestId(string id)
        {
            _id = id?.ToLowerInvariant() ?? throw new ArgumentNullException(nameof(id));
        }
 
        public bool Equals(ManifestId other)
        {
            return ToString() == other.ToString();
        }
 
        public int CompareTo(ManifestId other)
        {
            return string.Compare(ToString(), other.ToString(), StringComparison.Ordinal);
        }
 
        public override bool Equals(object? obj)
        {
            return obj is ManifestId id && Equals(id);
        }
 
        public override int GetHashCode()
        {
            return _id.GetHashCode();
        }
 
        public override string ToString()
        {
            return _id ?? "";
        }
    }
}