質問編集履歴

2

回答用に画像を追加しました。

2018/12/25 01:52

投稿

firstlast
firstlast

スコア138

test CHANGED
File without changes
test CHANGED
@@ -73,3 +73,103 @@
73
73
  Microsoft Visual Studio Community 2017(Version 15.9.4)
74
74
 
75
75
  Microsoft .NET Framework(Version 4.7.03190)
76
+
77
+
78
+
79
+ ###追加
80
+
81
+ 以下のようなクラスライブラリ(.NET Standard)を作り、
82
+
83
+ ```C#
84
+
85
+ using System;
86
+
87
+
88
+
89
+ namespace TestLibrary1
90
+
91
+ {
92
+
93
+ public class Animal
94
+
95
+ {
96
+
97
+ public int Aaa()
98
+
99
+ {
100
+
101
+ System.Collections.Generic.List<string> stringList = new System.Collections.Generic.List<string>();
102
+
103
+ stringList.Add("にゃんにゃん");
104
+
105
+ stringList.Add("わんわん");
106
+
107
+ return stringList.Count;
108
+
109
+ }
110
+
111
+
112
+
113
+ }
114
+
115
+ }
116
+
117
+ ```
118
+
119
+
120
+
121
+ 以下のようなWindowsフォームアプリケーション(.NET Framework)で参照して呼び出す。
122
+
123
+
124
+
125
+ ```C#
126
+
127
+ using System;
128
+
129
+ using System.Windows.Forms;
130
+
131
+
132
+
133
+ namespace WindowsFormsApp1
134
+
135
+ {
136
+
137
+ public partial class Form1 : Form
138
+
139
+ {
140
+
141
+ public Form1()
142
+
143
+ {
144
+
145
+ InitializeComponent();
146
+
147
+ }
148
+
149
+
150
+
151
+ private void Form1_Load(object sender, EventArgs e)
152
+
153
+ {
154
+
155
+ //System.Collections.Generic.List<string> stringList = new System.Collections.Generic.List<string>();
156
+
157
+ //stringList.Add("にゃんにゃん");
158
+
159
+ //stringList.Add("わんわん");
160
+
161
+ //MessageBox.Show(stringList.Count.ToString());
162
+
163
+ MessageBox.Show(new TestLibrary1.Animal().Aaa().ToString());
164
+
165
+ }
166
+
167
+ }
168
+
169
+ }
170
+
171
+ ```
172
+
173
+ ![イメージ説明](04a6763436c9cee2f818c172d4b8acfe.jpeg)
174
+
175
+ ![イメージ説明](c15f619897ae4764f46014530959b384.jpeg)

1

回答用に画像を追加しました。

2018/12/25 01:52

投稿

firstlast
firstlast

スコア138

test CHANGED
File without changes
test CHANGED
File without changes