当前位置: 首页>>代码示例>>C#>>正文


C# Collection.Count方法代码示例

本文整理汇总了C#中Microsoft.VisualBasic.Collection.Count方法的典型用法代码示例。如果您正苦于以下问题:C# Collection.Count方法的具体用法?C# Collection.Count怎么用?C# Collection.Count使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Microsoft.VisualBasic.Collection的用法示例。


在下文中一共展示了Collection.Count方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Add

        public void Add(ref lineItem lineitem)
        {
            object intLineNo = null;
            Collection lCol = new Collection();
            lineItem lLineitem = null;
            short x = 0;
            if (mCol.Count()) {
                lLineitem = mCol[mCol.Count()];
                if (lLineitem.quantity == 0)
                    mCol.Remove(lLineitem.lineNo);
            }
            if (mCol.Count()) {
                lLineitem = mCol[mCol.Count()];
                //If lLineitem.sPin <> "" Then
                if (lLineitem.atitem == true) {
                } else {
                    if (lLineitem.id == lineitem.id) {
                        if (lLineitem.transactionType == lineitem.transactionType) {
                            if (System.Math.Abs(lLineitem.price) == System.Math.Abs(lineitem.price)) {
                                if (lLineitem.reversal == lineitem.reversal) {
                                    if (lLineitem.revoke == lineitem.revoke) {
                                        if (lLineitem.shrink == lineitem.shrink) {
                                            if (Strings.InStr(Convert.ToString(lLineitem.quantity), ".")) {
                                            } else {
                                                lLineitem.quantity = lLineitem.quantity + lineitem.quantity;
                                                return;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }

            for (x = 1; x <= mCol.Count(); x++) {
                //UPGRADE_WARNING: Couldn't resolve default property of object mCol().lineNo. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="6A50421D-15FE-4896-8A1B-2EC21E9037B2"'
                mCol[x].lineNo = x;
                //UPGRADE_WARNING: Couldn't resolve default property of object mCol(x).lineNo. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="6A50421D-15FE-4896-8A1B-2EC21E9037B2"'
                lCol.Add(mCol[x], "k" + mCol[x].lineNo);
            }

            lineitem.lineNo = lCol.Count() + 1;
            //UPGRADE_WARNING: Couldn't resolve default property of object intLineNo. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="6A50421D-15FE-4896-8A1B-2EC21E9037B2"'
            intLineNo = lineitem.lineNo;

            lCol.Add(lineitem, "k" + lineitem.lineNo);
            mCol = lCol;
        }
开发者ID:nodoid,项目名称:PointOfSale,代码行数:50,代码来源:lineitems.cs


注:本文中的Microsoft.VisualBasic.Collection.Count方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。