数字与数组或者字符串里面的内容比较

///数字与数组或者字符串里面的内容比较
        /// </summary>
        private void YunXing()
        {
          
            int[] cs = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
            List<int> strList = new List<int>();
            strList.AddRange(cs);
            bool b;
            for (int i = 0; i < strList.Count; i++)
            {
                if (strList[i] == i)
                {
                    MessageBox.Show(i.ToString());
                }
                //}
            }
        }
原文地址:https://www.cnblogs.com/liujianshe1990-/p/5361908.html