When registering a custom event receiver to a content type during a feature deployment using the SPEventReceiverDefinition class, you need the full assembly name and the full class name. However, during development, it can be tedious to keep track of the assembly names, so to make things easier we can just grap it using the typeof operator. This small reusable helper method makes this easy:

RegisterContentTypeEventReceiver() helper method:

private void RegisterContentTypeEventReceiver(SPContentType contentType, SPEventReceiverType type, Type target, int sequenceNumber) 
{
    SPEventReceiverDefinition addingEventReceiver = contentType.EventReceivers.Add();
    addingEventReceiver.Type = type;
    addingEventReceiver.Assembly = target.Assembly.FullName;
    addingEventReceiver.Class = target.FullName;
    addingEventReceiver.SequenceNumber = sequenceNumber;
    addingEventReceiver.Update();

    contentType.Update(true);
}

Example usage (added to the Features event receiver). Assumes a “Customers” content type and a CustomerEventReceiver class exists:

public override void FeatureActivated(SPFeatureReceiverProperties properties)
{
    var web = (SPWeb)properties.Feature.Parent;    
	RegisterContentTypeEventReceiver(web.ContentTypes["Customers"], SPEventReceiverType.ItemUpdated, typeof(CustomerEventReceiver), 1000);
}

Hope this helps :)