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