0
Reply

Array.CreateInstance()

webtotal

webtotal

Dec 25 2003 1:01 AM
1.8k
Hi. There are two ways to create an array instance. as follows int[] arr = new int[10]; or Array arr = Array.CreateInstance(typeof(int), 10); Why use the latter?