回答編集履歴
5
文章修正 コードを微修正
test
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
|
11
11
|
|
12
12
|
|
13
|
-
を実装するなら単純に下記の
|
13
|
+
を実装するなら、単純に下記で良いのではないでしょうか。
|
14
14
|
|
15
15
|
|
16
16
|
|
@@ -20,9 +20,9 @@
|
|
20
20
|
|
21
21
|
return list
|
22
22
|
|
23
|
+
.Where(x => x.Date >= from.Date)
|
24
|
+
|
23
25
|
.OrderBy(x => x.Date)
|
24
|
-
|
25
|
-
.Where(x => x.Date >= from.Date)
|
26
26
|
|
27
27
|
.Take(count);
|
28
28
|
|
4
sample 追加
test
CHANGED
@@ -29,3 +29,5 @@
|
|
29
29
|
}
|
30
30
|
|
31
31
|
```
|
32
|
+
|
33
|
+
[sample](https://paiza.io/projects/9pLyTpiZTKrS4MuuVBoCzA)
|
3
typo
test
CHANGED
@@ -24,7 +24,7 @@
|
|
24
24
|
|
25
25
|
.Where(x => x.Date >= from.Date)
|
26
26
|
|
27
|
-
.Take(
|
27
|
+
.Take(count);
|
28
28
|
|
29
29
|
}
|
30
30
|
|
2
型はDateTimeに見えるので変えた
test
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
```C#
|
18
18
|
|
19
|
-
public IEnumerable<
|
19
|
+
public IEnumerable<DateTime> Get(IEnumerable<DateTime> list, int count, DateTime from){
|
20
20
|
|
21
21
|
return list
|
22
22
|
|
1
引数名がおかしい
test
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
```C#
|
18
18
|
|
19
|
-
public IEnumerable<Hoge> Get(IEnumerable<Hoge> s
|
19
|
+
public IEnumerable<Hoge> Get(IEnumerable<Hoge> list, int count, DateTime from){
|
20
20
|
|
21
21
|
return list
|
22
22
|
|