diff --git a/Chapter6.zip b/Chapter6.zip new file mode 100644 index 0000000..70231eb Binary files /dev/null and b/Chapter6.zip differ diff --git a/ScratchBook/Program.cs b/ScratchBook/Program.cs index 956c93f..2046581 100644 --- a/ScratchBook/Program.cs +++ b/ScratchBook/Program.cs @@ -17,6 +17,13 @@ namespace ScratchBook Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); + + + int[] test = new int[5]; + + Array.Resize(ref test, 15); + + } } } \ No newline at end of file