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