Custom Query (162 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (22 - 24 of 162)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Ticket Resolution Summary Owner Reporter
#186 fixed ジェネリクスインタフェースの継承ができない dai イグトランス (egtra)
Description

次のコードをコンパイルすると「"I<T>" 存在しないクラスです。」となってしまいます。

Interface I<T>
End Interface

Interface J<T>
	Inherits I<T>
End Interface

IEnumerable<T>, ICollection<T>, IList<T>の継承などで使用したいです。

#185 fixed Implementsに名前空間付きでインターフェイスを指定するとコンパイルできない dai NoWest
Description

下記のようなコードで”AAは無効な識別子”としてはじかれる

Namespace AAA
	Interface AA
		Function A() As String
	End Interface
End Namespace


Class Hoge
	Implements AAA.AA
Public
	Override Function A() As String
		Return New String("test1")
	End Function
End Class
#184 fixed ByRef引数を持つデリゲートを宣言するとコンパイルできない dai イグトランス (egtra)
Description

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

Delegate Function MessageFilter(ByRef m As MSG) As Boolean
Delegate Sub D1(ByRef x As Long)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.