質問編集履歴
2
文章を修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
|
8
8
|
|
9
|
-
|
9
|
+
以下記載のサンプルプログラムの足し算を行うメソッド(Add)を
|
10
10
|
|
11
11
|
右クリックして「テストの実行」を選択 したのですが、
|
12
12
|
|
1
画像が挿入できないのでソースコードを記載
test
CHANGED
File without changes
|
test
CHANGED
@@ -23,3 +23,39 @@
|
|
23
23
|
環境:Visual Studio 2019 Community
|
24
24
|
|
25
25
|
言語:Visual Basic
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
***サンプルのソースコード***
|
30
|
+
|
31
|
+
Module Module1
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
Public Sub Main()
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
System.Windows.Forms.MessageBox.Show(Add(1, 2))
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
End Sub
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
Private Function Add(ByVal x As Integer, ByVal y As Integer) As Integer
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
Return x + y
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
End Function
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
End Module
|
60
|
+
|
61
|
+
****************
|