Boo.Lang.Compiler.Ast.TryCastExpression.TryCastExpression C# (CSharp) Method

TryCastExpression() public method

public TryCastExpression ( LexicalInfo lexicalInfo, Expression target, TypeReference type ) : System
lexicalInfo LexicalInfo
target Expression
type TypeReference
return System
        public TryCastExpression(LexicalInfo lexicalInfo, Expression target, TypeReference type)
            : base(lexicalInfo)
        {
            this.Target = target;
            this.Type = type;
        }

Same methods

TryCastExpression::TryCastExpression ( ) : System
TryCastExpression::TryCastExpression ( Expression target, TypeReference type ) : System
TryCastExpression::TryCastExpression ( LexicalInfo lexicalInfo ) : System
TryCastExpression