using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
int[] arr = new int[3];
arr[0] = 13;
arr[1] = 340;
arr[2] = 1299;
SetValue(arr, 2, 16000);
foreach (int n in arr)
Console.WriteLine(n);
}
static void SetValue(int[] arr, int index, int value)
{
if (arr != null && arr.Length > 0)
arr[index] = value;
}
}
}
/*
run:
13
340
16000
*/