I\'m trying to remove the lower case letters on a TextBox..
TextBox
For example, short alpha code representing the insurance (e.g., \'BCBS\' for \'Blue Cross B
string Code = new String(txtDesc.text.Where(c => IsUpper(c)).ToArray());