Jurassic.Compiler.LiteralExpression.LiteralExpression C# (CSharp) 메소드

LiteralExpression() 공개 메소드

Creates a new instance of LiteralExpression.
public LiteralExpression ( object value ) : System
value object The literal value.
리턴 System
        public LiteralExpression(object value)
        {
            this.Value = value;
        }