Data hosted with ♥ by
Pastebin.com
-
Download Raw
-
See Original
using
System
;
namespace
Articulos
.
Cap04
{
public
sealed
class
OrdenCatch
{
public
static
void
Main
(
)
{
object
o
=
null
;
try
{
int
i
=
(
int
)
o
;
}
catch
(
Exception e
)
{
//...
}
catch
(
InvalidCastException e
)
{
//...
}
}
}
}