Using 5.3.2, trying to add components in the editor, not at runtime. Ended up going with this:
Actor->Modify();
UFoliageInstancedStaticMeshComponent* NewFoliageComponent = NewObject<UFoliageInstancedStaticMeshComponent>(Actor, UFoliageInstancedStaticMeshComponent::StaticClass());
NewFoliageComponent->OnComponentCreated();
NewFoliageComponent->AttachToComponent(Actor->GetRootComponent(), FAttachmentTransformRules::KeepRelativeTransform);
NewFoliageComponent->RegisterComponent();
Actor->AddInstanceComponent(NewFoliageComponent);
Using AddComponentByClass was working, and didnāt require the manual definition of the RootComponent, but made my engine crash when I left the level without saving the assets I inserted the components in. Sure, itās an edge case, but stillā¦ This method doesnāt crash my engine when I wanna undo stuff without having to save and then revert.
I reckon only thing you might need to adapt for runtime use is the removal of Modify. Maybe not even thatā¦