「VB.NET」ReadOnlyで定数を定義するサンプル

2021年4月27日

書式
ReadOnly 変数名 As データ型
使用例

Module ModuleTest
      Public ReadOnly MSG As String = "information"
      
      Sub Main()
            Console.WriteLine(MSG) 
      End Sub
End Module

実行結果
information

VB.net

Posted by arkgame