ジェネリッククラスの型パラメータに値型が指定された場合、そのクラスがテンプレート展開されるように修正。ついに、下記のようなソースコードがビルド可能に!!!
#console Dim b As System.Collections.Generic.List<Double> b.Add( 10 ) b.Add( 20 ) Dim p = b As *Double ' ←ここがミソ! Dim x = p[0] Dim y = p[1] Print x, y System.Console.ReadLine()