Ejemplo n.º 1
0
 protected ArgBaseExpression(T argument, string argumentName)
 {
     this.Value = argument;
     this.Name  = new ArgName {
         Value = argumentName
     };
 }
Ejemplo n.º 2
0
        protected ArgBase(Func <T> argument)
        {
            _argument = argument;

            this.Value = GetValue(argument);
            this.Name  = new ArgNameFunc <T>(argument);
        }
Ejemplo n.º 3
0
 protected ArgBaseExpression(Expression <Func <T> > argument)
 {
     this.Value = GetValue(argument);
     this.Name  = new ArgNameExpression <T>(argument);
 }