回答編集履歴
1
アクセス修飾子変更
answer
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
```C#
|
4
4
|
public abstract class Parent
|
5
5
|
{
|
6
|
-
|
6
|
+
protected abstract string Url { get; }
|
7
7
|
|
8
8
|
public Parent()
|
9
9
|
{
|
@@ -13,6 +13,6 @@
|
|
13
13
|
|
14
14
|
public class Child : Parent
|
15
15
|
{
|
16
|
-
|
16
|
+
protected override string Url => "http://aiueo.com";
|
17
17
|
}
|
18
18
|
```
|