本文介绍了C#铸造不同的方式 - (T)VS OBJ OBJ为T的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

可能重复:
  铸造VS使用'为'在CLR

我看到铸件在C#中的两种不同的方式。

I have seen two different ways of casting in C#.

例如:

MyObj foo = (MyObj) bar; // this is what I see most of the times
MyObj foo = bar as MyObj; // I do see this sometimes

08-31 06:12