Exemplo n.º 1
0
    static void Main()
    {
        VectorReference dec = new VectorReference();
        string mtext;
        mtext = "double";

        VariableElement name = new VariableElement();
        name.setText("a");
        dec.settype(mtext);
        dec.setvariable(name);
        string d;
        Element e;
        d= dec.gettype();
        e = (Element)dec.getvariable();
    }  
Exemplo n.º 2
0
 public abstract void VisitVectorReference(VectorReference element);
Exemplo n.º 3
0
 public override void VisitVectorReference(VectorReference element)
 {
     //throw new NotImplementedException();
 }