//Visual Basic 2010 Parameter Arrays - ParamArray Procedures en Functies public class Exercise1Solution { void GetConcatenation(string[] words) { if ((words != null)) { for (System.Collections.IEnumerator _it1 = words.GetEnumerator(); _it1.MoveNext(); ) { string word = ((string)(_it1.Current)); GetConcatenation = word; } } } } //Bezoek www.vbvoorbeelden.be voor meer C# voorbeelden. //Copyright - De Wolf / vbvoorbeelden - 2003-2011 - Alle rechten voorbehouden.