質問編集履歴

1

コードを追記しました。

2020/06/12 09:07

投稿

nkazto
nkazto

スコア9

test CHANGED
File without changes
test CHANGED
@@ -78,6 +78,38 @@
78
78
 
79
79
  ```
80
80
 
81
+ ### コード
82
+
83
+ ```
84
+
85
+ private void LoadCSV() {
86
+
87
+ TextAsset Tx = Resources.Load(DataPath) as TextAsset;
88
+
89
+ StringReader Reader = new StringReader(Tx.text);
81
90
 
82
91
 
92
+
93
+ if (Reader != null) {
94
+
95
+ string Line;
96
+
97
+ while (Reader.Peek() > -1) {
98
+
99
+ Line = Reader.ReadLine();
100
+
101
+ string[] Splits = Line.Split(',');
102
+
103
+
104
+
105
+ Text.text += Splits[1];
106
+
107
+ }
108
+
109
+ }
110
+
111
+ }
112
+
113
+ ```
114
+
83
115
  すみませんが、どうぞよろしくお願いいたします。