How can I do the same as the following in VB.NET
List<T[]> result = new List<T[]>();
// single combination
if (k == 0)
{
result.Add(new T[0]); // T is function type argument of generic function
How can I write the last line above in VB.NET?
I tried:
result.Add(New T(0)) 'doesn't work!
It should be: