Consider the following code:
void Handler(object o, EventArgs e) { // I swear o is a string string s = (string)o; // 1 //-OR- string s = o as str
string s = (string)o;
string s = o as string;
string s = o.ToString();