System.Reflection.Metadata.MetadataStringComparer
namespace System.Reflection.Metadata
{
public struct MetadataStringComparer
{
public bool Equals(StringHandle handle, string value);
public bool Equals(StringHandle handle, string value, bool ignoreCase);
public bool Equals(NamespaceDefinitionHandle handle, string value);
public bool Equals(NamespaceDefinitionHandle handle, string value, bool ignoreCase);
public bool Equals(DocumentNameBlobHandle handle, string value);
public bool Equals(DocumentNameBlobHandle handle, string value, bool ignoreCase);
public bool StartsWith(StringHandle handle, string value);
public bool StartsWith(StringHandle handle, string value, bool ignoreCase);
}
}