System.Reflection.Metadata.StringHandle
namespace System.Reflection.Metadata
{
public struct StringHandle : IEquatable<StringHandle>
{
public bool IsNil { get; }
public static implicit operator Handle(StringHandle handle);
public static explicit operator StringHandle(Handle handle);
public bool Equals(StringHandle other);
public static bool operator ==(StringHandle left, StringHandle right);
public static bool operator !=(StringHandle left, StringHandle right);
}
}