And just so you know, you have some flexibility with your coding style. C# doesn't care about white space. Since you use the ; at the end of a statement, you can seperate or compress your code to what ever you like. Example:
Code:
foreach (string item in Items){if (item=="MyItem"){MessageBox.Show("I Found It");break;}}
Doesn't look very readable though.