45
1
// @nuget: FluentAssertions
2
3
using System;
4
5
namespace Try_More_On_IEnumerable
6
{
7
class Program
8
{
9
static void Main(string[] args)
10
{
11
T01普通的循环获取偶数.Run();
12
Console.WriteLine($"运行成功,{DateTime.Now:O}");
13
}
14
}
15
}
16
17
18
namespace Try_More_On_IEnumerable
19
{
20
using System.Collections.Generic;
21
using FluentAssertions;
22
23
/// <summary>
24
/// https://dotnetfiddle.net/Widget/elXUjA
Cached Result