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