✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Dari potongan kode di bawah, pernyataan manakah yang sesuai dengan standard coding convention di C#:
public int HitungTotal(int[] inputArray)
{
int jumlahTotal = 0;
for (int i = 0; i < inputArray.Length; i++)
{
jumlahTotal += inputArray[i];
}
return jumlahTotal;
}