WebSurfer様
ご回答ありがとうございます。
ご指摘どおり、下記の方法で返すことはできました。
Delegate Function TestDelegate() As Integer
function test()
return 0
end function
function func() as TestDelegate
dim ret as TestDelegate
ret = new TestDelegate(Addressof test)
return ret
end function
ただ、「Addressof test」で作成されたデリゲートと、上記の方法で作成されたデリゲートは異なっているように思えます。
その理由となるソースは後ほどアップしたいと思います(勝手ですが、都合により来年になるかと・・・)
その際は、お分かりになりましたらご教授いただけると幸いです。
|