码迷,mamicode.com
首页 > 其他好文 > 详细

同步为两个数组赋值

时间:2014-09-26 19:34:48      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   ar   for   数据   sp   div   

          使用可变参数同步两个数组中的数据,一个存放类型,另外一个存放数据,两个数组一一对应。

 1 class Program
 2     {
 3         public static void InitArray(out string[] xType,out string[] xData, params string[] paraList)
 4         {
 5             Debug.Assert(paraList.Length % 2 == 0);  
 6             int arrayLength = paraList.Length / 2;
 7             string[] typeArray = new string[arrayLength];
 8             string[] dataArray = new string[arrayLength];
 9             for (int i = 0; i < arrayLength; i++)
10             {
11                 typeArray[i] = paraList[i * 2];
12                 dataArray[i] = paraList[i * 2 + 1];
13             }
14             xType = typeArray;
15             xData = dataArray;
16         }
17         static void Main(string[] args)
18         {
19             string[] typeArray;
20             string[] dataArray;
21             InitArray(out typeArray, out dataArray,"1001", "EX01", "1000", "道路","1011","Point" );
22             for (int i = 0; i < typeArray.Length; i++)
23             {
24                 Console.WriteLine("类型:" + typeArray[i] + ",数据:" + dataArray[i]);
25             }
26             Console.ReadKey(); 
27         }
28     }

    

同步为两个数组赋值

标签:style   blog   color   使用   ar   for   数据   sp   div   

原文地址:http://www.cnblogs.com/runonroad/p/3994655.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!