0
Answer

Array.CreateInstance()

webtotal

webtotal

21y
2.1k
1
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?