Missing semicolon. (#28921)

Addition of a missing semicolon in the code.
pull/28948/head^2
Leoproject 2019-04-03 05:06:23 -04:00 committed by The Coding Aviator
parent 72fcc3d7ad
commit 8935f3ad15
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ foreach (element in iterable-item)
}
// sample code
List<string> Names = new List<string>{ "Jim", "Jane", "Jack" }
List<string> Names = new List<string>{ "Jim", "Jane", "Jack" };
foreach(string name in Names)
{