Ejemplo n.º 1
0
 public static Props <T> Create <TActor>(Expression <Func <TActor> > fac) where TActor : UntypedActor
 => new Props <T>(Props.Create(fac));
Ejemplo n.º 2
0
 public Props(Props props) : this()
 {
     Underlying = props ?? throw new ArgumentNullException(nameof(props), $"{this} has received null instead of {nameof(Props)}");
 }