In Azure Service Fabric I can use stateful services and actors. A state type is like a normal .net object type. So I can create multiple instances of that state.
When I am pushing an instantiated state object from one stateful service/actor to another stateful service/actor, will the state object instance be copied or just referenced? Because it is not referenced, but copied, then I have to store the state data twice. Right?