Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
            try
            {
                {
                    ArrayDemo.Show();

                    //StackDemo.Show();

                    //QueueDemo.Show();
                }
                {
                    //BasicSortDemo.Show();

                    //  BasicSearchDemo.Show();
                }

                {
                    //    DictionaryDemo.Show();

                    // HashtableDemo.Show();
                }
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }

            Console.Read();
        }
        protected void Button12_Click(object sender, EventArgs e)
        {
            ArrayDemo array = new ArrayDemo();

            this.ShowResult.Text = array.output;
        }