// ** DeleteAttributeRequest **
// Delete attribute present in entity.
// Create the request object
DeleteAttributeRequest deleteAttribute = new DeleteAttributeRequest
{
// Set the request properties
EntityLogicalName = "EntityLogicalName",
LogicalName = "anAttribute_SchemaName"
};
// Execute the request
_service.Execute(deleteAttribute);