getValue() public method

public getValue ( ) : String
return String
Esempio n. 1
0
        // END-Term
        //

        public override bool Equals(Object o)
        {
            if (this == o)
            {
                return(true);
            }
            if (!(o is Constant))
            {
                return(false);
            }
            Constant c = (Constant)o;

            return(c.getValue().Equals(getValue()));
        }