Custom Query (162 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (31 - 33 of 162)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
Ticket Resolution Summary Owner Reporter
#172 fixed 引数にあるジェネリックなコレクションを関数内でForeachすると、ジェネリックの型が指定されない dai OverTaker
Description

「System.ObjectからSystem.Stringに変換できません」 とかエラーが出ます。

#console
Imports System.Collections.Generic
Imports System[]

fx( New List<String>)
Console.ReadLine()

Sub fx(strings As List<String>)
	Dim s As String
	Foreach s In strings
		Console.WriteLine(s)
	Next
End Sub
#171 fixed ジェネリッククラス内での値型型パラメータに対するSizeOf(T)が正常に働いていない模様 dai dai
Description

関連: #169

#console
Imports System.Collections.Generic
Imports System

Dim list As List<Char>
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 21
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.