回答編集履歴
2
誤字修正
answer
CHANGED
@@ -3,9 +3,9 @@
|
|
3
3
|
```csharp
|
4
4
|
publibc IEnumerable<ReactiveProperty<string>> GetProps()
|
5
5
|
{
|
6
|
-
|
6
|
+
yield return one;
|
7
|
-
|
7
|
+
yield return two;
|
8
|
-
|
8
|
+
yield return three;
|
9
9
|
}
|
10
10
|
```
|
11
11
|
|
1
誤字修正
answer
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
すでに解決済みではありますが、プロパティを列挙したいのであれば hoge に以下のメソッドを追加するのをおすすめします。
|
2
2
|
|
3
3
|
```csharp
|
4
|
-
|
4
|
+
publibc IEnumerable<ReactiveProperty<string>> GetProps()
|
5
5
|
{
|
6
6
|
yeild return one;
|
7
7
|
yeild return two;
|