From efb62984c826535c26e236b24867d36dc1aac1f7 Mon Sep 17 00:00:00 2001 From: Evaldas Date: Sat, 15 Dec 2018 15:12:53 +0200 Subject: [PATCH] Fixed a typo (#34686) --- guide/english/csharp/array/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/csharp/array/index.md b/guide/english/csharp/array/index.md index b6376e3f59..d3212356b3 100644 --- a/guide/english/csharp/array/index.md +++ b/guide/english/csharp/array/index.md @@ -47,7 +47,7 @@ nameOfArray[2] = 50; Code above will assign the value of 50 directly into element [2] -Note - Be careful when trying to assign/access a value to/from an array. If an invalid index isused, like `nameOfArray[-1]` you will encounter a run-time error. +Note - Be careful when trying to assign/access a value to/from an array. If an invalid index is used, like `nameOfArray[-1]` you will encounter a run-time error. You can assign multiple values at once while declaring the array using the format below: