Fixed GetDeterministicHashCodeAsString (use InvariantCulture) (#41)

* Akka.Remote example

* ToString(CultureInfo.InvariantCulture)

* .
This commit is contained in:
Stef Heyenrath
2022-12-13 16:42:59 +01:00
committed by GitHub
parent 1e30471a0c
commit a98db7aac2
15 changed files with 369 additions and 19 deletions
@@ -0,0 +1,13 @@
using Akka.Actor;
using ProxyInterfaceConsumerForAkka.Interfaces;
namespace ProxyInterfaceConsumerForAkka;
public class Program
{
public static void Main()
{
LocalActorRefProvider p = null;
ILocalActorRefProvider proxy = new LocalActorRefProviderProxy(p);
}
}