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