57
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
T08条件转循环.Run();
12
Console.WriteLine($"运行成功,{DateTime.Now:O}");
13
}
14
}
15
}
16
17
namespace Try_More_On_IEnumerable
18
{
19
using System;
20
using System.Collections.Generic;
21
using System.Linq;
22
using FluentAssertions;
23
24
public class T08条件转循环
Cached Result