Example #1
0
 public EchoOutput(
     EchoInput input
     )
 {
     this.Result = input?.Value;
 }
Example #2
0
 public static EchoOutput Echo(
     EchoInput input
     )
 {
     return(new EchoOutput(input));
 }