Exemplo n.º 1
0
        /// <summary>
        /// 结算结果显示在结算列表中
        /// </summary>
        /// <param name="strArray"></param>
        private void AddHistoryResultList(string[] strArray)
        {
            int length = strArray.Length;

            for (int i = 0; i < length; i++)
            {
                string temp = strArray[i];
                if (string.IsNullOrEmpty(temp))
                {
                    continue;
                }
                bool[] bo = GetBoolArray(temp);
                ResultListCtrl.AddResult(bo);
            }
        }