test_stack1.htm
Stack ::PUSH method
Code :

// Namespace Declaration
//File location : C:\BareBone_CSharp\Source_Code\Template
using System;
//csc test_stack1.cs
using System.Collections;
using System.Collections.Generic;
// Program start class
namespace test_stack11
{

class CsharpTemplate
{
// Main begins program execution.
static void Main(string[] str)
{
Stack stack1 = new Stack();
stack1.Push("1 =Jan");
stack1.Push("2 =Feb");
stack1.Push("3 =Mar");
IEnumerable c = stack1;
foreach(Object obj in c)
{
Console.WriteLine(obj);
}

}
}
}
//