[VB.NET]ByRefキーワードで参照渡しをするサンプル
書式
メソッド名(ByRef 変数名)
使用例
Module ModuleTest Sub Main() Dim y as Integer = 5 testFunc(y) Console.WriteLine(y) End Sub Sub testFunc(ByRef y) y = y * 2 Console.WriteLine(y) End Sub End Module
実行結果
10
10
Coding Changes the World
書式
メソッド名(ByRef 変数名)
使用例
Module ModuleTest Sub Main() Dim y as Integer = 5 testFunc(y) Console.WriteLine(y) End Sub Sub testFunc(ByRef y) y = y * 2 Console.WriteLine(y) End Sub End Module
実行結果
10
10