namespace RemoveDemo
{
class Program
{
static void Main(string[] args)
{
try
{
object obj = new Person();
Person person = (Person)obj;
if (person != null)
{
//do something.
}
}
catch (InvalidCastException ex)
{
}
catch (Exception ex)
{
}
}
public class Person
{
}
public class Student
{
}
}
}
浙公网安备 33010602011771号