Can someone explain me using the example below how type casting works. I came accross this code in a virtual academy session from microsoft: Windows Phone 8.1 Development for Absolute Beginners => Overview of common xaml controls
myTextBlock.Text = ((ComboBoxItem)Combo.SelectedItem).Content.ToString();
For those who see this as a duplicate, for me its about this specific code, not the explanation behind casting.
This Helps but i cant use it to explain code above