Roblox-File-Format/DataTypes/Content.cs
2021-02-18 13:15:08 -06:00

41 lines
928 B
C#

namespace RobloxFiles.DataTypes
{
/// <summary>
/// Content is a type used by most url-based XML properties.
/// Here, it only exists as a wrapper class for strings.
/// </summary>
public class Content
{
public readonly string Url;
public override string ToString() => Url;
public Content(string url)
{
Url = url;
}
public static implicit operator string(Content content)
{
return content?.Url;
}
public static implicit operator Content(string url)
{
return new Content(url);
}
public override int GetHashCode()
{
return Url.GetHashCode();
}
public override bool Equals(object obj)
{
if (!(obj is Content content))
return false;
return Url.Equals(content.Url);
}
}
}