i have An actor that i want to Access remotely but Akka.net adds a random number to the Actor name Even if i provided the name explicitly, example :
var VotingServer= System.ActorOf(Props.Create(()=> new VotingServerActor()),"VotingServerActor");
but Akka.net adds a random number to this actor making it impossible to address remotely.
i have searched everywhere and i have read the docs and i could not find anything, can someone tell me how to stop this random naming