CSharp examples for System:Array Search
Combines two arrays and returns a new array containing both values
/*/* w w w .j av a 2s . c o m*/ Copyright (c) 2012 <a href="http://www.gutgames.com">James Craig</a> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.*/ using System; public class Main{ /// <summary> /// Combines two arrays and returns a new array containing both values /// </summary> /// <typeparam name="ArrayType">Type of the data in the array</typeparam> /// <param name="Array1">Array 1</param> /// <param name="Array2">Array 2</param> /// <returns>A new array containing both arrays' values</returns> /// <example> /// <code> /// int[] TestObject1 = new int[] { 1, 2, 3 }; /// int[] TestObject2 = new int[] { 4, 5, 6 }; /// int[] TestObject3 = new int[] { 7, 8, 9 }; /// TestObject1 = TestObject1.Combine(TestObject2, TestObject3); /// </code> /// </example> public static ArrayType[] Combine<ArrayType>(this ArrayType[] Array1, params ArrayType[][] Array2) { if (Array1.IsNull() && Array2.IsNull()) return null; int ResultLength = (Array1.IsNull() ? 0 : Array1.Length); if (Array2.IsNotNull()) foreach (ArrayType[] Array in Array2) ResultLength += (Array.IsNull() ? 0 : Array.Length); ArrayType[] ReturnValue = new ArrayType[ResultLength]; int StartPosition = 0; if (Array1.IsNotNull()) { Array.Copy(Array1, ReturnValue, Array1.Length); StartPosition = Array1.Length; } if (Array2.IsNotNull()) { foreach (ArrayType[] TempArray in Array2) { Array.Copy(TempArray, 0, ReturnValue, StartPosition, TempArray.Length); StartPosition += TempArray.Length; } } return ReturnValue; } }