, , , , , . CLR . . , ?
, , Action<object>, Action<string> . string, CLR , , .
, , , Action<string> string , object. string.
// Original Version
void Method(string str) {
// Operate on the string
}
// Modified version
void Method(object obj) {
string str = (string)obj;
// operate on the string
}