備忘録 - VB.net と C# の違い

配列

VBでは()
C#では[]

List

VB.netでの宣言
Dim Hoge As New List(of String)
C#での宣言
List<String> Hoge = new List<String>();