SyntaxFix
Write A Post
Hire A Developer
Questions
The second option didn't work for me because the .Text element was out of scope (C# 4.0 VS2008). This was my solution...
string test = null; foreach (ComboBoxItem item in e.AddedItems) { test = item.Content.ToString(); break; }