回答編集履歴
1
using System.Runtime.InteropServices; を追加
test
CHANGED
@@ -3,6 +3,16 @@
|
|
3
3
|
|
4
4
|
|
5
5
|
```C#
|
6
|
+
|
7
|
+
using System.Runtime.InteropServices;
|
8
|
+
|
9
|
+
// 中略 //
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
namespace WpfApp
|
14
|
+
|
15
|
+
{
|
6
16
|
|
7
17
|
public partial class MainWindow : Window
|
8
18
|
|
@@ -130,6 +140,6 @@
|
|
130
140
|
|
131
141
|
}
|
132
142
|
|
133
|
-
|
143
|
+
}
|
134
144
|
|
135
145
|
```
|