Custom Query (162 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (28 - 30 of 162)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Ticket Resolution Summary Owner Reporter
#166 fixed 関数の引数で定義されたコレクションに対してForeachが使えない dai OverTaker
Description

まったく関係のない行番号のところで、二つのエラーが発生する。

キャスト演算子がオーバーロードされていません。
System.ObjectからSystem.Stringに変換できません。
Imports System.Collections.Generic
#console

Dim strings As List<String>
Show(strings)

Sub Show(strings As List<String>)
	Dim s As String
	Foreach s In strings
		Print s
	Next
End Sub
#169 fixed Listの要素を削除すると、Listが壊れる dai OverTaker
Description

RemoveAt,Removeでリストに変更した後、リストの内容がおかしくなります。

#console
Imports System.Collections.Generic
Imports System

Dim list As List<String>
list.Add("0")
list.Add("1")
list.Add("2")
list.Add("3")
list.RemoveAt(1)

Console.Write(list)
Console.ReadLine()
#170 fixed String.Split/Joinメソッドを実装する dai OverTaker
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.