Generation 操作

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Generation 操作相关的知识,希望对你有一定的参考价值。

Empty

Returns an empty collection

  1. var emptyCollection1 =Enumerable.Empty<string>();
  2. var emptyCollection2 =Enumerable.Empty<Student>();
  3. Console.WriteLine("Count: {0} ", emptyCollection1.Count());
  4. Console.WriteLine("Type: {0} ", emptyCollection1.GetType().Name);
  5. Console.WriteLine("Count: {0} ",emptyCollection2.Count());
  6. Console.WriteLine("Type: {0} ", emptyCollection2.GetType().Name);
  7. Results:
  8. Type:String[]
  9. Count:0
  10. Type:Student[]
  11. Count:0

Range

Generates collection of IEnumerable type with specified number of elements with sequential values, starting from first element.

  1. var intCollection =Enumerable.Range(10,10);
  2. Console.WriteLine("Total Count: {0} ", intCollection.Count());
  3. for(int i =0; i < intCollection.Count(); i++)
  4. Console.WriteLine("Value at index {0} : {1}", i, intCollection.ElementAt(i));
  5. Results:
  6. TotalCount:10
  7. Value at index 0:10
  8. Value at index 1:11
  9. Value at index 2:12
  10. Value at index 3:13
  11. Value at index 4:14
  12. Value at index 5:15
  13. Value at index 6:16
  14. Value at index 7:17
  15. Value at index 8:18
  16. Value at index 9:19

Repeat

Generates a collection of IEnumerable type with specified number of elements and each element contains same specified value.

  1. var intCollection =Enumerable.Repeat<int>(10,10);
  2. Console.WriteLine("Total Count: {0} ", intCollection.Count());
  3. for(int i =0; i < intCollection.Count(); i++)
  4. Console.WriteLine("Value at index {0} : {1}", i, intCollection.ElementAt(i));
  5. Results:
  6. TotalCount:10
  7. Value at index 0:10
  8. Value at index 1:10
  9. Value at index 2:10
  10. Value at index 3:10
  11. Value at index 4:10
  12. Value at index 5:10
  13. Value at index 6:10
  14. Value at index 7:10
  15. Value at index 8:10
  16. Value at index 9:10

以上是关于Generation 操作的主要内容,如果未能解决你的问题,请参考以下文章

Generation 操作

PAT甲级--The Largest Generation

VSCode自定义代码片段——git命令操作一个完整流程

1094. The Largest Generation (25)二叉树——PAT (Advanced Level) Practise

VSCode自定义代码片段15——git命令操作一个完整流程

VSCode自定义代码片段15——git命令操作一个完整流程