System.Reflection.Metadata.Ecma335.EditAndContinueLogEntry
namespace System.Reflection.Metadata.Ecma335
{
public struct EditAndContinueLogEntry : IEquatable<EditAndContinueLogEntry>
{
public EntityHandle Handle { get; }
public EditAndContinueOperation Operation { get; }
public EditAndContinueLogEntry(EntityHandle handle, EditAndContinueOperation operation);
public bool Equals(EditAndContinueLogEntry other);
}
}