// CArray.cs. // http://svc.luckstar.com.tw/CodeHelper/cs/KeyWord/Array.txt // CodeHelper for Array. // 2017-03-18, honda@luckstar.com.tw, Create Based on CollectionSample.sln. using System; using System.Collections.Generic; using System.Linq; using System.Text; // add using System.Collections; using System.Drawing; namespace PArray { public class CArray { public void Run() { // Creates and initializes a new integer array and a new Object array. int[] ia1 = new int[5] { 11, 2, 3, 4, 5 }; Object[] oa1 = new Object[5] { 26, 27, 28, 29, 30 }; int[,] ia2 = new int[,] { { 1, 2 }, { 3, 4 }, { 5, 6 }, { 7, 8 } }; // CreateInstance() with three-dimensional Array of type Int32. Array ia3D = Array.CreateInstance(typeof(Int32), 2, 3, 4); string[] saWeekday = new string[] { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" }; string[] saColumn = "column1,column2,column3".Split(','); // Create an array of five Point structures. Point[] pa1 = { new Point(100, 200), new Point(150, 250), new Point(250, 375), new Point(275, 395), new Point(295, 450) }; // Prints the initial values of both arrays. PrintDashLine(); Console.WriteLine("Initially,"); Console.Write("integer array:"); PrintArray(ia1); Console.Write("Object array: "); PrintArray(oa1); // Copies the first two elements from the integer array to the Object array. Array.Copy(ia1, oa1, 2); // Prints the values of the modified arrays. Console.WriteLine("\nAfter copying the first two elements of the integer array to the Object array,"); Console.Write("integer array:"); PrintArray(ia1); Console.Write("Object array: "); PrintArray(oa1); // Copies the last two elements from the Object array to the integer array. System.Array.Copy(oa1, oa1.GetUpperBound(0) - 1, ia1, ia1.GetUpperBound(0) - 1, 2); // Prints the values of the modified arrays. Console.WriteLine("\nAfter copying the last two elements of the Object array to the integer array,"); Console.Write("integer array:"); PrintArray(ia1); Console.Write("Object array: "); PrintArray(oa1); // Initializes three-dimensional Array of type Int32. for (int i = ia3D.GetLowerBound(0); i <= ia3D.GetUpperBound(0); i++) for (int j = ia3D.GetLowerBound(1); j <= ia3D.GetUpperBound(1); j++) for (int k = ia3D.GetLowerBound(2); k <= ia3D.GetUpperBound(2); k++) { ia3D.SetValue((i * 100) + (j * 10) + k, i, j, k); } Console.WriteLine(); PrintDashLine(); Console.WriteLine("ia3D:"); PrintArrayInfo(ia3D); PrintArray(ia3D); Console.WriteLine(); PrintDashLine(); Console.WriteLine("saColumn:"); PrintArrayInfo(saColumn); PrintArray(saColumn); Console.WriteLine(); PrintDashLine(); Console.WriteLine("ia1:"); PrintArrayInfo(ia1); PrintArray(ia1); Console.WriteLine(); PrintDashLine(); Console.WriteLine("oa1: "); PrintArrayInfo(oa1); PrintArray(oa1); Console.WriteLine(); // To find the first Point structure for which X times Y // is greater than 100000, pass the array and a delegate // that represents the ProductGT10 method to the Shared // Find method of the Array class. // Note that you do not need to create the delegate // explicitly, or to specify the type parameter of the // generic method, because the C# compiler has enough // context to determine that information for you. PrintDashLine(); Console.WriteLine("Find with delegate or linq."); Console.WriteLine("ia1:"); PrintArray(ia1); Console.WriteLine("ia1 LessThan3"); int iFind = Array.Find(ia1, LessThan3); Console.WriteLine("iFind={0}.", iFind); int iFindLinq = Array.Find(ia1, (t => t < 3)); Console.WriteLine("FoundLinq={0}", iFindLinq); Console.WriteLine(); PrintDashLine(); Console.WriteLine("pa1: by a anonymous delegate to find elements in array."); Point p1 = Array.Find(pa1, ProductGT10); Console.WriteLine("Found: X = {0}, Y = {1}", p1.X, p1.Y); Point pToFind = new Point(150, 250); Point p2 = Array.Find(pa1, (t => t == pToFind)); Console.WriteLine("FoundLinq: X = {0}, Y = {1}", p1.X, p1.Y); Console.WriteLine(); PrintDashLine(); Console.WriteLine("ia2: "); PrintArray(ia2); Console.WriteLine("ia2[3,1]={0}.", ia2[3,1]); Console.WriteLine(); PrintDashLine(); Console.WriteLine("ia1 sort: "); PrintArray(ia1); Array.Sort(ia1); PrintArray(ia1); int iBinarySearcha = Array.BinarySearch(ia1, 11); int iBinarySearchb = Array.BinarySearch(ia1, 33); Console.WriteLine("iBinarySearcha={0}, iBinarySearchb={1}.", iBinarySearcha, iBinarySearchb); Console.WriteLine(); Console.WriteLine(); } private void PrintDashLine() { Console.WriteLine("----------"); } private void PrintArray(int[] ia1) { Console.Write("PrintArray(int[]):"); foreach (int i in ia1) { Console.Write("\t{0}", i); } Console.WriteLine(); } private void PrintArray(Object[] oa1) { Console.Write("PrintArray(Object[]):"); foreach (object o1 in oa1) { Console.Write("\t{0}", o1); } Console.WriteLine(); } private void PrintArrayInfo(Array a1) { Console.WriteLine("{0} dimension(s) with total {1} elements:", a1.Rank, a1.Length); Console.WriteLine("\tLength\tLower\tUpper"); for (int i = 0; i < a1.Rank; i++) { Console.WriteLine("{0}:\t{1}\t{2}\t{3}", i, a1.GetLength(i), a1.GetLowerBound(i), a1.GetUpperBound(i)); } } private void PrintArray(Array a1) { Console.Write("PrintArray(Array):"); IEnumerator myEnumerator = a1.GetEnumerator(); int i = 0; // 3D int cols = a1.GetLength(a1.Rank - 1); while (myEnumerator.MoveNext()) { if (i < cols) { i++; } else { Console.WriteLine(); i = 1; } Console.Write("\t{0}", myEnumerator.Current); } Console.WriteLine(); } private void PrintArray(int[,] ia2D) { Console.Write("PrintArray(int[,]):"); foreach (int i in ia2D) { Console.Write("\t{0}", i); } Console.WriteLine(); } private Boolean LessThan3(int i1) { if (i1 < 3) return true; return false; } private bool ProductGT10(Point p1) { if (p1.X * p1.Y > 100000) { return true; } else { return false; } } } }