Ejemplo n.º 1
0
 private string GetParsedInstruction()
 {
     return(string.Format(
                BaseInstruction,
                ParamOne == null ? "null" : ParamOne.ToString(),
                ParamTwo == null ? "null" : ParamTwo.ToString()));
 }
Ejemplo n.º 2
0
 public MultipleParams(
     [BeanReference] ParamOne one
     , [BeanReference] ParamTwo two)
 {
     this.paramOne = one;
     this.paramTwo = two;
 }