10 lines
112 B
C#
Raw Normal View History

using System;
class X {
public static void Main ()
{
int [] foo = null;
Array.Resize (ref foo, 10);
}
}