a98db7aac2
* Akka.Remote example * ToString(CultureInfo.InvariantCulture) * .
13 lines
289 B
C#
13 lines
289 B
C#
using Akka.Actor;
|
|
using ProxyInterfaceConsumerForAkka.Interfaces;
|
|
|
|
namespace ProxyInterfaceConsumerForAkka;
|
|
|
|
public class Program
|
|
{
|
|
public static void Main()
|
|
{
|
|
LocalActorRefProvider p = null;
|
|
ILocalActorRefProvider proxy = new LocalActorRefProviderProxy(p);
|
|
}
|
|
} |