Answer by jimud
using System.Collections.Generic; static void Main() { List list = new List(); list.Add(2); list.Add(3); list.Add(7); foreach (int prime in list) // Loop through List with foreach {...
View ArticleAnswer by jimud
See this website http://www.dotnetperls.com/string-array it will teach you all about arrays. Than you can use your imagination on how you could use other objects that aren't strings as shown in the...
View ArticleAnswer by jimud
using System.Collections.Generic; static void Main() { List list = new List(); list.Add(2); list.Add(3); list.Add(7); foreach (int prime in list) // Loop through List with foreach {...
View ArticleAnswer by jimud
See this website http://www.dotnetperls.com/string-array it will teach you all about arrays. Than you can use your imagination on how you could use other objects that aren't strings as shown in the...
View Article