Click here to Skip to main content
15,885,278 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
SQL
public class Execution
    {
        public int structur;
        public Stack<int> pileProg;
        public Execution()
        {
            pileProg = new Stack<int>();

        }
/*example of classes I want to use:*/

public class Constant 
       {
        private string Name;
        private string Value;

       public Constant(string Name,string Value)
        {
       this.Name=Name;
       this.Value=Value;
       /*here I want to push the value in the stack */
         }
        public string name
        {
       get{return Name;}
       set{ Name=value;}
         }  
         public string value
        {
       get{return Value;}
       set{ Value=value;}
         } 
    }
Posted
Comments
[no name] 22-Apr-14 1:07am    
Not complete. Please explain fully and clearly.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900