/* Custom Project and Libraries Copyright, 2006.  Venkat, ISS */
using System;
using System.Collections.Generic;
using System.Text;
using ISS.RV.LIB;
namespace Prog00
{
    class ArrSamp
    {
        static void Main()
        {
            // Write the Main Program for ArrSamp here... 
            string[] name = new string[] { "chaw", "yin", "hla" };
            
            Console.WriteLine(name.Length);
            
            for (int i = 0; i < name.Length; i++)
            {
                Console.WriteLine(name[i]);
            }
                #region /* Do not remove this or write codes after this  */
                ISSConsole.Pause();
            #endregion
        }
    }
}
 
No comments:
Post a Comment