Custom Query (162 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (13 - 15 of 162)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Ticket Resolution Summary Owner Reporter
#129 fixed 戻り値が構造体のメソッドの中でメンバ変数の値がおかしい dai OverTaker
Description

戻り値を構造体にしたメソッドの中で、メンバ関数の値を取得すると、値がおかしくなっています。DateTime.ToFileTime()はおそらくこれが原因で前から動かなかったと思われるので、だいぶ前から存在するバグかと思われます。

Dim object = New MyObject(100)
object.fx()

Class MyObject
	m_Value As Long
Public
	Function MyObject(v As Long)
		m_Value = v
	End Function

	Function fx() As FILETIME
		Dim v As Long
		v = m_Value
		debug
	End Function
End Class
#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
#143 fixed 引数なしの例外でCatchが無限ループする dai OverTaker
Description

なぜかCatch内が何度も実行されます。

Try
	proc()
Catch
	MessageBox(0, "catch", "title", MB_OK)
Finally
	MessageBox(0, "finally", "title", MB_OK)
End Try

Sub proc()
	Throw
End Sub
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.