Custom Query (162 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (40 - 42 of 162)

Ticket Owner Reporter Resolution Summary
#164 dai イグトランス (egtra) fixed コンパイル中に中断を押すと高確率でコンパイラが落ちる
Description

題目の通りです。一見、中断が成功したように見えても、次に閉じるを押すと「メモリがReadになれませんでした」という具合に駄目になります。

#167 dai イグトランス (egtra) fixed メンバ関数とデリゲートで戻り値の共変と引数の反変に対応してほしい
Description

まず、このコードがコンパイルできないのがとても不便です。優先度を高にしたのはこのためです。

Class MyClass
	Implements System.ICloneable
Public
	Override Function Clone() As MyClass
	End Function
End Class

また、デリゲートでは反変に対応すると、ライブラリのあらゆるイベントをSystem.EventHandler型のデリゲートで捕まえられるようになり、より統一性のある環境を構築できると思います。

Class MyEventArgs
	Inherits System.EventArgs
End Class

Delegate Sub MyEventHandler(sender As Object, e As MyEventArgs)

'System.EventHandlerはDelegate Sub EventHandler(sender As Object, e As System.EventArgs)と定義されている
Dim e As System.EventHandler
Dim m As MyEventHandler
m += e

メソッドの引数の反変は

#169 dai OverTaker fixed Listの要素を削除すると、Listが壊れる
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()
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.