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


C# Dictionary.Take方法代码示例

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


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

示例1: TakeShouldTrimDictionaryWithComparer

        public void TakeShouldTrimDictionaryWithComparer()
        {
            // arrange
            var target = new Dictionary<string, int>()
            {
                { "Key1", 1 },
                { "Key2", 2 },
                { "Key3", 3 },
                { "Key4", 4 },
                { "Key5", 5 }
            };

            // act
            var actual = target.Take( StringComparer.Ordinal, "Key2", "Key4" );

            // assert
            Assert.Equal( 2, actual.Count );
            Assert.False( actual.ContainsKey( "Key1" ) );
            Assert.True( actual.ContainsKey( "Key2" ) );
            Assert.False( actual.ContainsKey( "Key3" ) );
            Assert.True( actual.ContainsKey( "Key4" ) );
            Assert.False( actual.ContainsKey( "Key5" ) );
        }
开发者ID:WaffleSquirrel,项目名称:More,代码行数:23,代码来源:IDictionaryExtensionsTest.cs

示例2: LoadInputFile

        private static InputFile LoadInputFile(string filePath)
        {
            var fileRowData = new Dictionary<int, IRow>();

            using (var fs = new FileStream(filePath, FileMode.Open, FileAccess.Read))
            {
                int index = 0;
                var uploadedExcel = new XSSFWorkbook(fs);
                //get data sheet
                ISheet dataSheet = uploadedExcel.GetSheetAt(0);
                // preload into memory and close the stream
                IEnumerator rowEnumerator = dataSheet.GetEnumerator();
                while (rowEnumerator.MoveNext())
                {
                    fileRowData.Add(index, (IRow) rowEnumerator.Current);
                    index++;
                }
            }
            //take header rows
            List<IRow> header = fileRowData.Take(1).ToList().ConvertAll(x => x.Value);
            //skip header rows
            List<ProductInputRow> productInputRowData =
                fileRowData.Skip(1).ToList().ConvertAll(x => Converter.Convert(x.Value, x.Key, header.Last()))
                    .Where(x => !x.AllStringPropertiesNullOrEmpty())
                    // filter out blanked out data: NPOI reads them as rows
                    .ToList();
            return new InputFile {Header = header, Data = productInputRowData};
        }
开发者ID:aleks279,项目名称:atrend-test,代码行数:28,代码来源:ProductUploader.cs

示例3: CreateMetrics

        static void CreateMetrics()
        {
            int idx = 1;
            string[] units = new string[] { "psi", "gpm", "rpm", "in/min" };
            Dictionary<string, string> tags = new Dictionary<string, string>();
            tags.Add("tag1", "value1");
            tags.Add("tag2", "value2");
            tags.Add("tag3", "value3");
            tags.Add("tag4", "value4");
            tags.Add("tag5", "value5");

            foreach (ServerEnvironment e in _environments)
            {
                foreach (ServerGroup g in e.groups)
                {
                    foreach (ServerItem item in g.items)
                    {
                        Metric metric = new Metric();
                        metric.name = "metric_" + idx;
                        metric.env = e.name;
                        metric.group = g.name;
                        metric.item = item.name;
                        metric.type = item.type;
                        metric.unit = units[new Random().Next(0, units.Length - 1)];
                        metric.persist = new Random().NextDouble() * 100 > 50 ? "true" : "false";

                        metric.tags = tags.Take(new Random().Next(1, tags.Count)).ToDictionary(pair => pair.Key, pair => pair.Value);

                        _metrics.Add(metric);
                        System.Threading.Thread.Sleep(10);

                        idx++;
                    }
                }
            }
        }
开发者ID:4l3j0,项目名称:apisim,代码行数:36,代码来源:Program.cs


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