質問編集履歴

1

データ構造の追記

2019/07/07 12:29

投稿

chintao1224
chintao1224

スコア155

test CHANGED
File without changes
test CHANGED
@@ -27,3 +27,51 @@
27
27
 
28
28
 
29
29
  よろしくお願いします。
30
+
31
+
32
+
33
+ データ構造を追記します。
34
+
35
+
36
+
37
+
38
+
39
+ ```VB.NET
40
+
41
+ Dim lstList As New List(Of String)
42
+
43
+ Dim lstTable As New List(Of List(Of String))()
44
+
45
+
46
+
47
+ lstList.Add("001")
48
+
49
+ lstList.Add("テスト1")
50
+
51
+ lstList.Add("100")
52
+
53
+ lstList.Add("200")
54
+
55
+
56
+
57
+ lstList.Add("002")
58
+
59
+ lstList.Add("テスト2")
60
+
61
+ lstList.Add("101")
62
+
63
+ lstList.Add("201")
64
+
65
+
66
+
67
+ Dim idx As Integer = lstList.BinarySearch("002")
68
+
69
+
70
+
71
+ lstTable.Add(lstList)
72
+
73
+ ```
74
+
75
+
76
+
77
+ よろしくお願いします。