Custom Query (162 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (94 - 96 of 162)

Ticket Owner Reporter Resolution Summary
#172 dai OverTaker fixed 引数にあるジェネリックなコレクションを関数内でForeachすると、ジェネリックの型が指定されない
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
#184 dai イグトランス (egtra) fixed ByRef引数を持つデリゲートを宣言するとコンパイルできない
Description

例えば次のような宣言で無数の「定数式にリテラル値、または定数以外のものが含まれています。」となります。

Delegate Function MessageFilter(ByRef m As MSG) As Boolean
Delegate Sub D1(ByRef x As Long)
#187 dai イグトランス (egtra) wontfix インタフェースからObjectに変換できない
Description

次のコードがエラーになるのは意図された挙動でしょうか?もしそうでないなら、改修をお願いします。

Interface I
End Interface

Sub f(i As I)
	Dim o = i As Object
End Sub
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.