回答編集履歴

1

ISomething.Load()の戻り値を修正

2018/08/03 13:03

投稿

NullRe
NullRe

スコア7

test CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  {
8
8
 
9
- void Load();
9
+ string Load();
10
10
 
11
11
  }
12
12
 
@@ -44,11 +44,11 @@
44
44
 
45
45
 
46
46
 
47
- void ISomething.Load()
47
+ string ISomething.Load()
48
48
 
49
49
  {
50
50
 
51
- Load();
51
+ return Load();
52
52
 
53
53
  }
54
54