Beispiel #1
0
 public void Echo(object value)
 {
     if (value != null)
     {
         Echo(Convert.ToStringOrThrow(value, this));
     }
 }
 public override void Output(ref PhpValue me, Context ctx) => ctx.Echo(Convert.ToStringOrThrow(me.Object, ctx));
 public override string ToStringOrThrow(ref PhpValue me, Context ctx) => Convert.ToStringOrThrow(me.Object, ctx);